2001-08-01 Dietmar Maurer <dietmar@ximian.com>
[mono.git] / mcs / class / corlib / System / IndexOutOfRangeException.cs
1 //
2 // System.IndexOutOfRangeException.cs
3 //
4 // Author:
5 //   Joe Shaw (joe@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System {
11
12         public sealed class IndexOutOfRangeException : SystemException {
13                 // Constructors
14                 public IndexOutOfRangeException ()
15                         : base ("Array index is out of range")
16                 {
17                 }
18
19                 public IndexOutOfRangeException (string message)
20                         : base (message)
21                 {
22                 }
23
24                 public IndexOutOfRangeException (string message, Exception inner)
25                         : base (message, inner)
26                 {
27                 }
28         }
29 }