blob: 1a10b97cb16a4ce32c0925d02c489b3807db6acb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
namespace CrupestApi.Commons.Crud;
/// <summary>
/// This exception means the exception is caused by user and can be safely shown to user.
/// </summary>
[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) { }
}
|