[SSL/TLS] Expose Client/Server callbacks that can be used to select/reorder SSL/TLS...
[mono-project.git] / mcs / class / System / System.Net.Mail / SmtpException.cs
blob4c76fd9bb9d4663dc5d65b81f1f57c9fa69fcba3
1 //
2 // System.Net.Mail.SmtpException.cs
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2004
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using System.Runtime.Serialization;
33 namespace System.Net.Mail {
34 [Serializable]
35 public class SmtpException : Exception, ISerializable
37 #region Fields
39 SmtpStatusCode statusCode;
41 #endregion // Fields
43 #region Constructors
45 public SmtpException ()
46 : this (SmtpStatusCode.GeneralFailure)
50 public SmtpException (SmtpStatusCode statusCode)
51 : this (statusCode, "Syntax error, command unrecognized.")
55 public SmtpException (string message)
56 : this (SmtpStatusCode.GeneralFailure, message)
60 protected SmtpException (SerializationInfo info, StreamingContext context)
61 : base (info, context)
63 try {
64 statusCode = (SmtpStatusCode) info.GetValue ("Status", typeof (int));
65 } catch (SerializationException) {
66 //For compliance with previously serialized version:
67 statusCode = (SmtpStatusCode) info.GetValue ("statusCode", typeof (SmtpStatusCode));
71 public SmtpException (SmtpStatusCode statusCode, string message)
72 : base (message)
74 this.statusCode = statusCode;
77 public SmtpException (string message, Exception innerException)
78 : base (message, innerException)
80 statusCode = SmtpStatusCode.GeneralFailure;
83 #endregion // Constructors
85 #region Properties
87 public SmtpStatusCode StatusCode {
88 get { return statusCode; }
89 set { statusCode = value; }
92 #endregion // Properties
94 public override void GetObjectData (SerializationInfo info, StreamingContext context)
96 if (info == null)
97 throw new ArgumentNullException ("info");
98 base.GetObjectData (info, context);
99 info.AddValue ("Status", statusCode, typeof (int));
101 #if !TARGET_JVM //remove private implementation
102 void ISerializable.GetObjectData (SerializationInfo info, StreamingContext context)
104 GetObjectData (info, context);
106 #endif