/*! * @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.Exception%28v=vs.110%29.aspx */ import { Error, SystemException } from "./SystemException"; export { Error }; export declare class ArgumentException extends SystemException { readonly paramName: string; constructor(paramName: string, message?: string, innerException?: Error, beforeSealing?: (ex: any) => void); protected getName(): string; } export default ArgumentException;