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