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

39 lines
1.1 KiB
C#
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
2008-11-17 18:29:00 -05:00
//=============================================================================
//
// Class: RankException
//
// Purpose: For methods that are passed arrays with the wrong number of
// dimensions.
//
//=============================================================================
2008-03-05 09:52:00 -05:00
2008-11-17 18:29:00 -05:00
namespace System
{
2008-03-05 09:52:00 -05:00
using System;
//| <include path='docs/doc[@for="RankException"]/*' />
public class RankException : SystemException
{
//| <include path='docs/doc[@for="RankException.RankException"]/*' />
public RankException()
: base("Arg_RankException") {
}
//| <include path='docs/doc[@for="RankException.RankException1"]/*' />
public RankException(String message)
: base(message) {
}
//| <include path='docs/doc[@for="RankException.RankException2"]/*' />
public RankException(String message, Exception innerException)
: base(message, innerException) {
}
}
}