imported everything from my branch (which is slightly harmless).
[mono.git] / mcs / class / System.Data / System.Data.SqlTypes.jvm / SqlNullValueException.cs
1 // System.Data.SqlTypes.SqlNullValueException\r
2 //
3 // Authors:
4 //      Konstantin Triger <kostat@mainsoft.com>
5 //      Boris Kirzner <borisk@mainsoft.com>
6 //      
7 // (C) 2005 Mainsoft Corporation (http://www.mainsoft.com)
8 //
9
10 //
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.
29 //
30
31 namespace System.Data.SqlTypes
32 {
33
34     /**
35      * The exception that is thrown for errors in an arithmetic, casting, or conversion operation
36      *
37      * @author  Pavel Sandler
38      * @version 1.0, 01/01/03
39      */
40
41     /*
42     * CURRENT LIMITATIONS
43     * 1. Constructor(SerializationInfo info, StreamingContext context) is not supported
44     * 2. Method "void GetObjectData(...,...)" is not supported from ISerializable
45     */
46
47         [Serializable]
48     public class SqlNullValueException : System.Data.SqlTypes.SqlTypeException
49     {
50         /**
51                                             * Initializes a new instance of the <code>SqlNullValueException</code> class.
52                                             */
53         public SqlNullValueException() : base("Data is Null. This method or property cannot be called on Null values.")
54         {
55         }
56
57         /**
58          * Initializes a new instance of the <code>SqlNullValueException</code> class
59          * with a specified error message.
60          *
61          * @param message The message that describes the error.
62          */
63         public SqlNullValueException(String message): base(message)
64         {
65         }
66     }
67 }