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