123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Bowin.Common.Mail
- {
- public class SendMailException : Exception
- {
- public SendMailException(string message)
- : base(message)
- {
- }
- public SendMailException(string message, Exception ex)
- : base(message, ex)
- {
- }
- }
- public class ReceiveMailException : Exception
- {
- public ReceiveMailException(string message)
- : base(message)
- {
- }
- public ReceiveMailException(string message, Exception ex)
- : base(message, ex)
- {
- }
- }
- }
|