| | | 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.Services.Exceptions; |
| | | 8 | | |
| | | 9 | | |
| | | 10 | | [Serializable] |
| | | 11 | | public class NameTakenException : Exception |
| | | 12 | | { |
| | 0 | 13 | | public NameTakenException() { } |
| | 0 | 14 | | public NameTakenException(string message) : base(message) { } |
| | 0 | 15 | | public NameTakenException(string message, Exception inner) : base(message, inner) { } |
| | | 16 | | protected NameTakenException( |
| | | 17 | | System.Runtime.Serialization.SerializationInfo info, |
| | 0 | 18 | | System.Runtime.Serialization.StreamingContext context) : base(info, context) { } |
| | | 19 | | } |