core-js/src/core/error.ts
2018-09-05 19:01:59 +09:00

7 lines
172 B
TypeScript

export class IllegalArgumentError extends Error {
public constructor(message?: string) {
super(message);
Object.setPrototypeOf(this, new.target.prototype);
}
}