FormSecurityException.cs
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

C#

  1. // -- FILE ------------------------------------------------------------------
  2. // name       : FormSecurityException.cs
  3. // project    : Itenso Web User Forms
  4. // created    : Jani Giannoudis - 2008.10.30
  5. // language   : c#
  6. // environment: .NET 2.0
  7. // copyright  : (c) 2008 by Itenso GmbH, Switzerland
  8. // --------------------------------------------------------------------------
  9. using System;
  10. using System.Web.UI;
  11. namespace Itenso.WebUserForms.Controls
  12. {
  13. // ------------------------------------------------------------------------
  14. public class FormSecurityException : Exception
  15. {
  16. // ----------------------------------------------------------------------
  17. /// <summary>
  18. /// Creates a new empty instance.
  19. /// </summary>
  20. public FormSecurityException()
  21. {
  22. } // FormSecurityException
  23. // ----------------------------------------------------------------------
  24. /// <summary>
  25. /// Creates a new instance with the given message.
  26. /// </summary>
  27. /// <param name="message">the message to display</param>
  28. public FormSecurityException( string message, string info ) :
  29. base( message )
  30. {
  31. this.info = info;
  32. } // FormSecurityException
  33. // ----------------------------------------------------------------------
  34. public string Info
  35. {
  36. get { return this.info; }
  37. } // Info
  38. // ----------------------------------------------------------------------
  39. // members
  40. private readonly string info;
  41. } // class FormSecurityException
  42. } // namespace Itenso.WebUserForms.Controls
  43. // -- EOF -------------------------------------------------------------------