// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================= ** ** Class: IndexOutOfRangeException ** ** Purpose: Exception class for invalid array indices. ** =============================================================================*/ namespace System { using System; using System.Runtime.CompilerServices; //| [RequiredByBartok] public sealed partial class IndexOutOfRangeException : SystemException { } }