2003-11-04 Carlos Guzm�n �lvarez <carlosga@telefonica.net>
[mono.git] / mcs / class / Mono.Security / Mono.Security.Protocol.Tls / TlsException.cs
1 /* Transport Security Layer (TLS)\r
2  * Copyright (c) 2003 Carlos Guzmán Álvarez\r
3  * \r
4  * Permission is hereby granted, free of charge, to any person \r
5  * obtaining a copy of this software and associated documentation \r
6  * files (the "Software"), to deal in the Software without restriction, \r
7  * including without limitation the rights to use, copy, modify, merge, \r
8  * publish, distribute, sublicense, and/or sell copies of the Software, \r
9  * and to permit persons to whom the Software is furnished to do so, \r
10  * subject to the following conditions:\r
11  * \r
12  * The above copyright notice and this permission notice shall be included \r
13  * in all copies or substantial portions of the Software.\r
14  * \r
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, \r
16  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \r
17  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND \r
18  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT \r
19  * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, \r
20  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, \r
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER \r
22  * DEALINGS IN THE SOFTWARE.\r
23  */\r
24 \r
25 using System;\r
26 using System.Text;\r
27 using System.Runtime.Serialization;\r
28 \r
29 using Mono.Security.Protocol.Tls.Alerts;\r
30 \r
31 namespace Mono.Security.Protocol.Tls\r
32 {\r
33         [Serializable]\r
34         public sealed class TlsException : Exception\r
35         {       \r
36                 #region CONSTRUCTORS\r
37                 \r
38                 internal TlsException(string message) : base(message)\r
39                 {\r
40                 }\r
41 \r
42                 internal TlsException(SerializationInfo info, StreamingContext context) : base(info, context)\r
43                 {\r
44                 }\r
45                 \r
46                 internal TlsException(string message, Exception ex) : base(message, ex)\r
47                 {\r
48                 }\r
49 \r
50                 #endregion\r
51         }\r
52 }\r