protected ObjectionException(SerializationInfo info, StreamingContext context) : base(info, context) { Objections = new Objection[0]; }
public ObjectionException(string message) : base(message) { Objections = new Objection[0]; }
public ObjectionException(string message, Exception inner) : base(message, inner) { Objections = new Objection[0]; }
public ObjectionException() { Objections = new Objection[0]; }