ts-scikit
Version:
A scientific toolkit written in Typescript
11 lines • 365 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IllegalArgumentError = void 0;
class IllegalArgumentError extends Error {
constructor(message) {
super(message);
this.name = 'IllegalArgumentError';
}
}
exports.IllegalArgumentError = IllegalArgumentError;
//# sourceMappingURL=illegal-argument-error.js.map