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

编辑器/阅读器

开发平台:

C#

  1. // -- FILE ------------------------------------------------------------------
  2. // name       : FormFieldException.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. namespace Itenso.WebUserForms.Controls
  11. {
  12. // ------------------------------------------------------------------------
  13. public class FormFieldException : Exception
  14. {
  15. // ----------------------------------------------------------------------
  16. /// <summary>
  17. /// Creates a new empty instance.
  18. /// </summary>
  19. public FormFieldException()
  20. {
  21. } // FormFieldException
  22. // ----------------------------------------------------------------------
  23. /// <summary>
  24. /// Creates a new instance with the given message.
  25. /// </summary>
  26. /// <param name="message">the message to display</param>
  27. public FormFieldException( string message, IUserFormField formField ) :
  28. base( message )
  29. {
  30. this.formField = formField;
  31. } // FormFieldException
  32. // ----------------------------------------------------------------------
  33. public IUserFormField FormField
  34. {
  35. get { return this.formField; }
  36. } // FormField
  37. // ----------------------------------------------------------------------
  38. // members
  39. private readonly IUserFormField formField;
  40. } // class FormFieldException
  41. } // namespace Itenso.WebUserForms.Controls
  42. // -- EOF -------------------------------------------------------------------