예제 #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];
 }