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