singrdk/base/Kernel/System/IndexOutOfRangeException.cs

41 lines
1.3 KiB
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// 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;
//| <include path='docs/doc[@for="IndexOutOfRangeException"]/*' />
[RequiredByBartok]
public sealed class IndexOutOfRangeException : SystemException {
//| <include path='docs/doc[@for="IndexOutOfRangeException.IndexOutOfRangeException"]/*' />
public IndexOutOfRangeException()
: base("Arg_IndexOutOfRangeException") {
}
//| <include path='docs/doc[@for="IndexOutOfRangeException.IndexOutOfRangeException1"]/*' />
public IndexOutOfRangeException(String message)
: base(message) {
}
//| <include path='docs/doc[@for="IndexOutOfRangeException.IndexOutOfRangeException2"]/*' />
public IndexOutOfRangeException(String message, Exception innerException)
: base(message, innerException) {
}
}
}