@tsdotnet/exceptions
Version:
[](https://github.com/tsdotnet/exceptions/blob/master/LICENSE)  [ • 580 B
TypeScript
/*!
* @author electricessence / https://github.com/electricessence/
* Licensing: MIT
* Based upon: https://msdn.microsoft.com/en-us/library/System.Exception%28v=vs.110%29.aspx
*/
import ArgumentException from './ArgumentException';
type Primitive = string | number | boolean;
export default class ArgumentOutOfRangeException extends ArgumentException {
readonly actualValue: Primitive | null | undefined;
constructor(paramName: string, actualValue: Primitive | null | undefined, message?: string, innerException?: Error);
protected getName(): string;
}
export {};