| 1234567891011121314151617 |
- //
- // System.Web.Mail.SmtpException.cs
- //
- // Author(s):
- // Per Arneng <[email protected]>
- //
- //
- using System.IO;
- namespace System.Web.Mail {
- // an exception thrown when an smtp exception occurs
- internal class SmtpException : IOException {
- public SmtpException( string message ) : base( message ) {}
- }
- }
|