2004-11-28 Zoltan Varga <vargaz@freemail.hu>
authorZoltan Varga <vargaz@gmail.com>
Sun, 28 Nov 2004 15:02:30 +0000 (15:02 -0000)
committerZoltan Varga <vargaz@gmail.com>
Sun, 28 Nov 2004 15:02:30 +0000 (15:02 -0000)
* AccessViolationException.cs DataMisalignedException.cs OperationCanceledException.cs
NotCancelableException.cs TimeoutException.cs: New files.

svn path=/trunk/mcs/; revision=36718

mcs/class/corlib/System/AccessViolationException.cs [new file with mode: 0644]
mcs/class/corlib/System/ChangeLog
mcs/class/corlib/System/DataMisalignedException.cs [new file with mode: 0644]
mcs/class/corlib/System/NotCancelableException.cs [new file with mode: 0644]
mcs/class/corlib/System/OperationCanceledException.cs [new file with mode: 0644]
mcs/class/corlib/System/TimeoutException.cs [new file with mode: 0644]

diff --git a/mcs/class/corlib/System/AccessViolationException.cs b/mcs/class/corlib/System/AccessViolationException.cs
new file mode 100644 (file)
index 0000000..db45f78
--- /dev/null
@@ -0,0 +1,65 @@
+//
+// System.AccessViolationException.cs
+//
+
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System.Runtime.Serialization;
+
+#if NET_2_0
+
+namespace System
+{
+       [Serializable]
+       public class AccessViolationException : SystemException
+       {
+               const int Result = unchecked ((int)0x80004003);
+
+               // Constructors
+               public AccessViolationException ()
+                       : base (Locale.GetText ("Attempted to read or write protected memory. This is often an indication that other memory has been corrupted."))
+               {
+                       HResult = Result;
+               }
+
+               public AccessViolationException (string message)
+                       : base (message)
+               {
+                       HResult = Result;
+               }
+
+               public AccessViolationException (string message, Exception innerException)
+                       : base (message, innerException)
+               {
+                       HResult = Result;
+               }
+
+               protected AccessViolationException (SerializationInfo info, StreamingContext context)
+                       : base (info, context)
+               {
+               }
+       }
+}
+
+#endif
index 80c6d49e3bba4e1bba65f26e8dfa7b5e19a9f2ed..dd7f3bb07cef3696b5c00edbdebfa9c8616b7e5a 100644 (file)
@@ -1,3 +1,8 @@
+2004-11-28  Zoltan Varga  <vargaz@freemail.hu>
+
+       * AccessViolationException.cs DataMisalignedException.cs OperationCanceledException.cs
+       NotCancelableException.cs TimeoutException.cs: New files.
+
 2004-11-23  Raja R Harinath  <rharinath@novell.com>
 
        * Decimal.cs [NET_2_0]: Use old code till GMCS imports decimal
diff --git a/mcs/class/corlib/System/DataMisalignedException.cs b/mcs/class/corlib/System/DataMisalignedException.cs
new file mode 100644 (file)
index 0000000..9d9f95c
--- /dev/null
@@ -0,0 +1,65 @@
+//
+// System.DataMisalignedException.cs
+//
+
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System.Runtime.Serialization;
+
+#if NET_2_0
+
+namespace System
+{
+       [Serializable]
+       public class DataMisalignedException : SystemException
+       {
+               const int Result = unchecked ((int)0x80131541);
+
+               // Constructors
+               public DataMisalignedException ()
+                       : base (Locale.GetText ("A datatype misalignment was detected in a load or store instruction."))
+               {
+                       HResult = Result;
+               }
+
+               public DataMisalignedException (string message)
+                       : base (message)
+               {
+                       HResult = Result;
+               }
+
+               public DataMisalignedException (string message, Exception innerException)
+                       : base (message, innerException)
+               {
+                       HResult = Result;
+               }
+
+               protected DataMisalignedException (SerializationInfo info, StreamingContext context)
+                       : base (info, context)
+               {
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/corlib/System/NotCancelableException.cs b/mcs/class/corlib/System/NotCancelableException.cs
new file mode 100644 (file)
index 0000000..be33e4e
--- /dev/null
@@ -0,0 +1,65 @@
+//
+// System.NotCancelableException.cs
+//
+
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System.Runtime.Serialization;
+
+#if NET_2_0
+
+namespace System
+{
+       [Serializable]
+       public class NotCancelableException : SystemException
+       {
+               const int Result = unchecked ((int)0x8013153c);
+
+               // Constructors
+               public NotCancelableException ()
+                       : base (Locale.GetText (" The operation attempted to be canceled could not be because it was not in a cancelable region."))
+               {
+                       HResult = Result;
+               }
+
+               public NotCancelableException (string message)
+                       : base (message)
+               {
+                       HResult = Result;
+               }
+
+               public NotCancelableException (string message, Exception innerException)
+                       : base (message, innerException)
+               {
+                       HResult = Result;
+               }
+
+               protected NotCancelableException (SerializationInfo info, StreamingContext context)
+                       : base (info, context)
+               {
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/corlib/System/OperationCanceledException.cs b/mcs/class/corlib/System/OperationCanceledException.cs
new file mode 100644 (file)
index 0000000..115aa27
--- /dev/null
@@ -0,0 +1,65 @@
+//
+// System.OperationCanceledException.cs
+//
+
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System.Runtime.Serialization;
+
+#if NET_2_0
+
+namespace System
+{
+       [Serializable]
+       public class OperationCanceledException : SystemException
+       {
+               const int Result = unchecked ((int)0x8013153b);
+
+               // Constructors
+               public OperationCanceledException ()
+                       : base (Locale.GetText ("The operation was canceled."))
+               {
+                       HResult = Result;
+               }
+
+               public OperationCanceledException (string message)
+                       : base (message)
+               {
+                       HResult = Result;
+               }
+
+               public OperationCanceledException (string message, Exception innerException)
+                       : base (message, innerException)
+               {
+                       HResult = Result;
+               }
+
+               protected OperationCanceledException (SerializationInfo info, StreamingContext context)
+                       : base (info, context)
+               {
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/corlib/System/TimeoutException.cs b/mcs/class/corlib/System/TimeoutException.cs
new file mode 100644 (file)
index 0000000..56db9e4
--- /dev/null
@@ -0,0 +1,65 @@
+//
+// System.TimeoutException.cs
+//
+
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System.Runtime.Serialization;
+
+#if NET_2_0
+
+namespace System
+{
+       [Serializable]
+       public class TimeoutException : SystemException
+       {
+               const int Result = unchecked ((int)0x80131505);
+
+               // Constructors
+               public TimeoutException ()
+                       : base (Locale.GetText ("The operation has timed-out."))
+               {
+                       HResult = Result;
+               }
+
+               public TimeoutException (string message)
+                       : base (message)
+               {
+                       HResult = Result;
+               }
+
+               public TimeoutException (string message, Exception innerException)
+                       : base (message, innerException)
+               {
+                       HResult = Result;
+               }
+
+               protected TimeoutException (SerializationInfo info, StreamingContext context)
+                       : base (info, context)
+               {
+               }
+       }
+}
+
+#endif