FormSecurityException.cs
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:2k
- // -- FILE ------------------------------------------------------------------
- // name : FormSecurityException.cs
- // project : Itenso Web User Forms
- // created : Jani Giannoudis - 2008.10.30
- // language : c#
- // environment: .NET 2.0
- // copyright : (c) 2008 by Itenso GmbH, Switzerland
- // --------------------------------------------------------------------------
- using System;
- using System.Web.UI;
- namespace Itenso.WebUserForms.Controls
- {
- // ------------------------------------------------------------------------
- public class FormSecurityException : Exception
- {
- // ----------------------------------------------------------------------
- /// <summary>
- /// Creates a new empty instance.
- /// </summary>
- public FormSecurityException()
- {
- } // FormSecurityException
- // ----------------------------------------------------------------------
- /// <summary>
- /// Creates a new instance with the given message.
- /// </summary>
- /// <param name="message">the message to display</param>
- public FormSecurityException( string message, string info ) :
- base( message )
- {
- this.info = info;
- } // FormSecurityException
- // ----------------------------------------------------------------------
- public string Info
- {
- get { return this.info; }
- } // Info
- // ----------------------------------------------------------------------
- // members
- private readonly string info;
- } // class FormSecurityException
- } // namespace Itenso.WebUserForms.Controls
- // -- EOF -------------------------------------------------------------------