// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*=============================================================================
**
** Class: IndexOutOfRangeException
**
**
** Purpose: Exception class for invalid array indices.
**
** Date: March 24, 1998
**
=============================================================================*/
namespace System {
using System;
using System.Runtime.CompilerServices;
//|
[RequiredByBartok]
public sealed class IndexOutOfRangeException : SystemException {
//|
public IndexOutOfRangeException()
: base("Arg_IndexOutOfRangeException") {
}
//|
public IndexOutOfRangeException(String message)
: base(message) {
}
//|
public IndexOutOfRangeException(String message, Exception innerException)
: base(message, innerException) {
}
}
}