Exemple #1
0
 public UserException(string userError, int code = 400) : this(code)
 {
     if (!string.IsNullOrWhiteSpace(userError))
     {
         UserErrors.Add(userError);
     }
 }