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