25 lines
635 B
C#
25 lines
635 B
C#
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
/*=============================================================================
|
|
**
|
|
** Class: IndexOutOfRangeException
|
|
**
|
|
** Purpose: Exception class for invalid array indices.
|
|
**
|
|
=============================================================================*/
|
|
|
|
namespace System
|
|
{
|
|
|
|
using System;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
//| <include path='docs/doc[@for="IndexOutOfRangeException"]/*' />
|
|
[RequiredByBartok]
|
|
public sealed partial class IndexOutOfRangeException : SystemException {
|
|
}
|
|
}
|