namespace CrupestApi.Commons.Crud; /// /// This exception means the exception is caused by user and can be safely shown to user. /// [System.Serializable] public class UserException : Exception { public UserException() { } public UserException(string message) : base(message) { } public UserException(string message, System.Exception inner) : base(message, inner) { } protected UserException( System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } }