-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathSmppClientException.cs
52 lines (47 loc) · 1.83 KB
/
SmppClientException.cs
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
43
44
45
46
47
48
49
50
51
52
/************************************************************************
* Copyright (C) 2008 Jamaa Technologies
*
* This file is part of Jamaa SMPP Client Library.
*
* Jamaa SMPP Client Library is free software. You can redistribute it and/or modify
* it under the terms of the Microsoft Reciprocal License (Ms-RL)
*
* You should have received a copy of the Microsoft Reciprocal License
* along with Jamaa SMPP Client Library; See License.txt for more details.
*
* Author: Benedict J. Tesha
* [email protected], www.jamaatech.com
*
************************************************************************/
using System;
namespace JamaaTech.Smpp.Net.Client
{
/// <summary>
/// Represents an exception thrown during an SMPP operation
/// </summary>
[Serializable]
public class SmppClientException : Exception
{
#region Variables
#endregion
#region Constructors
/// <summary>
/// Initializes a new instance of <see cref="SmppClientException"/>
/// </summary>
public SmppClientException() { }
/// <summary>
/// Initializes a new instance of <see cref="SmppClientException"/>
/// </summary>
/// <param name="message">The message that describes the error</param>
public SmppClientException(string message)
: base(message) { }
/// <summary>
/// Initializes a new instance of <see cref="SmppClientException"/>
/// </summary>
/// <param name="message">A message that describes the error</param>
/// <param name="innerException">The exception that is the cause of the current exception or null if not exception is specified</param>
public SmppClientException(string message, Exception innerException)
: base(message, innerException) { }
#endregion
}
}