| | 1 | | namespace MUNity.Database.FluentAPI; |
| | 2 | |
|
| | 3 | | [System.Serializable] |
| | 4 | | public class UserNotFoundException : System.Exception |
| | 5 | | { |
| 0 | 6 | | public UserNotFoundException() { } |
| 3 | 7 | | public UserNotFoundException(string message) : base(message) { } |
| 0 | 8 | | public UserNotFoundException(string message, System.Exception inner) : base(message, inner) { } |
| | 9 | | protected UserNotFoundException( |
| | 10 | | System.Runtime.Serialization.SerializationInfo info, |
| 0 | 11 | | System.Runtime.Serialization.StreamingContext context) : base(info, context) { } |
| | 12 | | } |