SmtpException.cs 326 B

1234567891011121314151617
  1. //
  2. // System.Web.Mail.SmtpException.cs
  3. //
  4. // Author(s):
  5. // Per Arneng <[email protected]>
  6. //
  7. //
  8. using System.IO;
  9. namespace System.Web.Mail {
  10. // an exception thrown when an smtp exception occurs
  11. internal class SmtpException : IOException {
  12. public SmtpException( string message ) : base( message ) {}
  13. }
  14. }