InvalidEmailAddressException.cs
上传用户:wdhx888
上传日期:2017-06-08
资源大小:112k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C#

  1. using System;
  2. namespace EricDaugherty.CSES.Common
  3. {
  4. /// <summary>
  5. /// Indicates that an email address is not valid.
  6. /// </summary>
  7. /// <remarks>
  8. /// Thrown by the EmailAddress class when part of all of the email
  9. /// address being set is invalid.
  10. /// </remarks>
  11. public class InvalidEmailAddressException : ApplicationException
  12. {
  13. #region Constructors
  14. /// <summary>
  15. /// Creates a new Exception with a user-displayable message.
  16. /// </summary>
  17. public InvalidEmailAddressException( string userMessage ) : base( userMessage )
  18. {
  19. }
  20. #endregion
  21. }
  22. }