namespace AppException { [Serializable] public class UserNotFoundException : Exception { public UserNotFoundException() : base("User not found.") { } public UserNotFoundException(string userMail) : base($"User with mail: '{userMail}' not found.") { } } }