import BaseException from './BaseException'; /** * Error that occurs when providing an unexpected argument to a function. */ export default class InvalidArgumentException extends BaseException { get name(): string; } //# sourceMappingURL=InvalidArgumentException.d.ts.map