typescript-dotnet-core
Version:
A the core classes and utilities of a JavaScript-Friendly .NET Based TypeScript Library.
12 lines (11 loc) • 518 B
TypeScript
/*!
* @author electricessence / https://github.com/electricessence/
* Licensing: MIT https://github.com/electricessence/TypeScript.NET-Core/blob/master/LICENSE.md
* Based upon: https://msdn.microsoft.com/en-us/library/system.collections.generic.KeyNotFoundException(v=vs.110).aspx
*/
import { SystemException, Error } from "../Exceptions/SystemException";
export { Error };
export declare class KeyNotFoundException extends SystemException {
protected getName(): string;
}
export default KeyNotFoundException;