Inheritance: StorageLibException
Example #1
0
 public UserNotFoundException(Guid id, UserNotFound innerException)
     : base("There is no user with the given ID `" + id + "'.", innerException)
 {
 }
Example #2
0
 public UserNotFoundException(string login, UserNotFound innerException)
     : base("There is no user with the given login `" + login + "'.", innerException)
 {
 }