// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
//=============================================================================
//
// Class: RankException
//
// Purpose: For methods that are passed arrays with the wrong number of
// dimensions.
//
//=============================================================================
namespace System
{
using System;
//|
public class RankException : SystemException
{
//|
public RankException()
: base("Arg_RankException") {
}
//|
public RankException(String message)
: base(message) {
}
//|
public RankException(String message, Exception innerException)
: base(message, innerException) {
}
}
}