示例#1
0
 protected ObjectionException(SerializationInfo info, StreamingContext context)
     : base(info, context)
 {
     Objections = new Objection[0];
 }
示例#2
0
 public ObjectionException(string message)
     : base(message)
 {
     Objections = new Objection[0];
 }
示例#3
0
 public ObjectionException(string message, Exception inner)
     : base(message, inner)
 {
     Objections = new Objection[0];
 }
示例#4
0
 public ObjectionException()
 {
     Objections = new Objection[0];
 }