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