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