示例#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;
 }