// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
//=============================================================================
//
// Class: InvalidCastException
//
// Purpose: Exception class for bad cast conditions!
//
//=============================================================================
namespace System
{
using System;
using System.Runtime.CompilerServices;
//|
public partial class InvalidCastException : SystemException {
//|
public InvalidCastException(String message)
: base(message) {
}
//|
public InvalidCastException(String message, Exception innerException)
: base(message, innerException) {
}
}
}