| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Linq; |
| | 4 | | using System.Text; |
| | 5 | | using System.Threading.Tasks; |
| | 6 | |
|
| | 7 | | namespace MUNity.Database.FluentAPI; |
| | 8 | |
|
| | 9 | | [Serializable] |
| | 10 | | public class AlreadyMemberException : Exception |
| | 11 | | { |
| 0 | 12 | | public AlreadyMemberException() { } |
| 0 | 13 | | public AlreadyMemberException(string message) : base(message) { } |
| 0 | 14 | | public AlreadyMemberException(string message, Exception inner) : base(message, inner) { } |
| | 15 | | protected AlreadyMemberException( |
| | 16 | | System.Runtime.Serialization.SerializationInfo info, |
| 0 | 17 | | System.Runtime.Serialization.StreamingContext context) : base(info, context) { } |
| | 18 | | } |