예제 #1
0
 public PropertyErrorsException(PropertyError propertyError, Exception inner)
     : base("", inner)
 {
     _propertyErrors = new PropertyErrors();
     _propertyErrors.Add(propertyError);
 }
예제 #2
0
 public PropertyErrorsException(PropertyError propertyError)
 {
     _propertyErrors = new PropertyErrors();
     _propertyErrors.Add(propertyError);
 }