2001-11-21 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / class / corlib / System / ArrayTypeMismatchException.cs
1 //
2 // System.ArrayTypeMismatchException.cs
3 //
4 // Author:
5 //   Joe Shaw (joe@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.  http://www.ximian.com
8 //
9 using System.Globalization;
10
11 namespace System {
12
13         public class ArrayTypeMismatchException : SystemException {
14                 // Constructors
15                 public ArrayTypeMismatchException ()
16                         : base (Locale.GetText ("Source array type cannot be assigned to destination array type"))
17                 {
18                 }
19
20                 public ArrayTypeMismatchException (string message)
21                         : base (message)
22                 {
23                 }
24
25                 public ArrayTypeMismatchException (string message, Exception inner)
26                         : base (message, inner)
27                 {
28                 }
29         }
30 }