예제 #1
0
 public AdException(Exception e, AdStatusType type = AdStatusType.Unknown)
     : base(e.Message, e)
 {
     this.Type = AdStatusType.Unknown;
 }
예제 #2
0
 public AdException(string message, Exception innerException, AdStatusType type = AdStatusType.Unknown)
     : base(message, innerException)
 {
     this.Type = type;
 }
예제 #3
0
 public AdException(SerializationInfo info, StreamingContext context, AdStatusType type = AdStatusType.Unknown)
     : base(info, context)
 {
     this.Type = type;
 }
예제 #4
0
 public AdException(AdStatusType type = AdStatusType.Unknown) : base()
 {
     this.Type = type;
 }