blob: d779609b5b5dc43282ff0be9996e974b02e59b33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
using System;
namespace Timeline.Services.User.RegisterCode
{
[Serializable]
public class InvalidRegisterCodeException : Exception
{
/// <summary>
/// Initializes a new instance of the <see cref="T:InvalidRegisterCodeException"/> class
/// </summary>
public InvalidRegisterCodeException()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="T:InvalidRegisterCodeException"/> class
/// </summary>
/// <param name="message">A <see cref="T:System.String"/> that describes the exception. </param>
public InvalidRegisterCodeException(string message) : base(message)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="T:InvalidRegisterCodeException"/> class
/// </summary>
/// <param name="message">A <see cref="T:System.String"/> that describes the exception. </param>
/// <param name="inner">The exception that is the cause of the current exception. </param>
public InvalidRegisterCodeException(string message, System.Exception inner) : base(message, inner)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="T:InvalidRegisterCodeException"/> class
/// </summary>
/// <param name="context">The contextual information about the source or destination.</param>
/// <param name="info">The object that holds the serialized object data.</param>
protected InvalidRegisterCodeException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context)
{
}
}
}
|