0
|
1 using System;
|
|
2 using System.Runtime.Serialization;
|
|
3
|
|
4 namespace BLToolkit.Reflection.Extension
|
|
5 {
|
|
6 /// <summary>
|
|
7 /// Defines the base class for the namespace exceptions.
|
|
8 /// </summary>
|
|
9 /// <remarks>
|
|
10 /// This class is the base class for exceptions that may occur during
|
|
11 /// execution of the namespace members.
|
|
12 /// </remarks>
|
|
13 [Serializable]
|
|
14 public class TypeExtensionException : Exception
|
|
15 {
|
|
16 /// <summary>
|
|
17 /// Initializes a new instance of the <see cref="TypeExtensionException"/> class.
|
|
18 /// </summary>
|
|
19 /// <remarks>
|
|
20 /// This constructor initializes the <see cref="Exception.Message"/>
|
|
21 /// property of the new instance
|
|
22 /// to a system-supplied message that describes the error,
|
|
23 /// such as "BLToolkit Type Extension error has occurred."
|
|
24 /// </remarks>
|
|
25 public TypeExtensionException()
|
|
26 : base("An BLToolkit Type Extension error has occurred.")
|
|
27 {
|
|
28 }
|
|
29
|
|
30 /// <summary>
|
|
31 /// Initializes a new instance of the <see cref="TypeExtensionException"/> class
|
|
32 /// with the specified error message.
|
|
33 /// </summary>
|
|
34 /// <param name="message">The message to display to the client when the
|
|
35 /// exception is thrown.</param>
|
|
36 /// <seealso cref="Exception.Message"/>
|
|
37 public TypeExtensionException(string message)
|
|
38 : base(message)
|
|
39 {
|
|
40 }
|
|
41
|
|
42 /// <summary>
|
|
43 /// Initializes a new instance of the <see cref="TypeExtensionException"/> class
|
|
44 /// with the specified error message and InnerException property.
|
|
45 /// </summary>
|
|
46 /// <param name="message">The message to display to the client when the
|
|
47 /// exception is thrown.</param>
|
|
48 /// <param name="innerException">The InnerException, if any, that threw
|
|
49 /// the current exception.</param>
|
|
50 /// <seealso cref="Exception.Message"/>
|
|
51 /// <seealso cref="Exception.InnerException"/>
|
|
52 public TypeExtensionException(string message, Exception innerException)
|
|
53 : base(message, innerException)
|
|
54 {
|
|
55 }
|
|
56
|
|
57 /// <summary>
|
|
58 /// Initializes a new instance of the <see cref="TypeExtensionException"/> class
|
|
59 /// with the InnerException property.
|
|
60 /// </summary>
|
|
61 /// <param name="innerException">The InnerException, if any, that threw
|
|
62 /// the current exception.</param>
|
|
63 /// <seealso cref="Exception.InnerException"/>
|
|
64 public TypeExtensionException(Exception innerException)
|
|
65 : base(innerException.Message, innerException)
|
|
66 {
|
|
67 }
|
|
68
|
|
69 #if !SILVERLIGHT
|
|
70
|
|
71 /// <summary>
|
|
72 /// Initializes a new instance of the <see cref="TypeExtensionException"/> class
|
|
73 /// with serialized data.
|
|
74 /// </summary>
|
|
75 /// <param name="info">The object that holds the serialized object data.</param>
|
|
76 /// <param name="context">The contextual information about the source or
|
|
77 /// destination.</param>
|
|
78 /// <remarks>This constructor is called during deserialization to
|
|
79 /// reconstitute the exception object transmitted over a stream.</remarks>
|
|
80 protected TypeExtensionException(SerializationInfo info, StreamingContext context)
|
|
81 : base(info, context)
|
|
82 {
|
|
83 }
|
|
84
|
|
85 #endif
|
|
86 }
|
|
87 }
|
|
88
|