public PropertyErrorsException(PropertyError propertyError, Exception inner)
     : base("", inner)
 {
     _propertyErrors = new PropertyErrors();
     _propertyErrors.Add(propertyError);
 }
 public PropertyErrorsException(PropertyError propertyError)
 {
     _propertyErrors = new PropertyErrors();
     _propertyErrors.Add(propertyError);
 }