@tsdotnet/exceptions
Version:
[](https://github.com/tsdotnet/exceptions/blob/master/LICENSE) [](https://www.npm
11 lines (10 loc) • 425 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.js';
export default class ArgumentNullException extends ArgumentException {
constructor(paramName: string, message?: string, innerException?: unknown);
protected getName(): string;
}