UNPKG

typescript-dotnet-amd

Version:

A JavaScript-Friendly .NET Based TypeScript Library.

15 lines (14 loc) 704 B
/*! * @author electricessence / https://github.com/electricessence/ * Licensing: MIT https://github.com/electricessence/TypeScript.NET/blob/master/LICENSE.md * Based upon: https://msdn.microsoft.com/en-us/library/System.Exception%28v=vs.110%29.aspx */ import { ArgumentException, Error } from "./ArgumentException"; import { Primitive } from "../Primitive"; export { Error }; export declare class ArgumentOutOfRangeException extends ArgumentException { actualValue: Primitive | null | undefined; constructor(paramName: string, actualValue: Primitive | null | undefined, message?: string, innerException?: Error); protected getName(): string; } export default ArgumentOutOfRangeException;