Merge pull request #2237 from xmcclure/container-owner
[mono.git] / mcs / class / Mono.Security / Mono.Security.Interface / TlsException.cs
1 //
2 // TlsException.cs
3 //
4 // Author:
5 //       Martin Baulig <martin.baulig@xamarin.com>
6 //
7 // Copyright (c) 2015 Xamarin, Inc.
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining a copy
10 // of this software and associated documentation files (the "Software"), to deal
11 // in the Software without restriction, including without limitation the rights
12 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 // copies of the Software, and to permit persons to whom the Software is
14 // furnished to do so, subject to the following conditions:
15 //
16 // The above copyright notice and this permission notice shall be included in
17 // all copies or substantial portions of the Software.
18 //
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 // THE SOFTWARE.
26
27 using System;
28 using System.Text;
29 using System.Runtime.Serialization;
30
31 namespace Mono.Security.Interface
32 {
33         public sealed class TlsException : Exception
34         {
35                 #region Fields
36
37                 private Alert alert;
38
39                 #endregion
40
41                 #region Properties
42
43                 public Alert Alert {
44                         get { return this.alert; }
45                 }
46
47                 #endregion
48
49                 #region Constructors
50
51                 public TlsException (Alert alert)
52                         : this (alert, alert.Description.ToString())
53                 {
54                 }
55
56                 public TlsException (Alert alert, string message)
57                         : base (message)
58                 {
59                         this.alert = alert;
60                 }
61
62                 public TlsException (AlertLevel level, AlertDescription description)
63                         : this (new Alert (level, description))
64                 {
65                 }
66
67                 public TlsException (AlertDescription description)
68                         : this (new Alert (description))
69                 {
70                 }
71
72                 public TlsException (AlertDescription description, string message)
73                         : this (new Alert (description), message)
74                 {
75                 }
76
77                 public TlsException (AlertDescription description, string format, params object[] args)
78                         : this (new Alert (description), string.Format (format, args))
79                 {
80                 }
81
82                 #endregion
83         }
84 }