singrdk/base/Applications/Runtime/Full/System/IndexOutOfRangeException.cs

38 lines
1.2 KiB
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"]/*' />
public sealed partial 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) {
}
}
}