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