Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 58x 58x 22x 21x 21x 21x | import { messageCheck, used } from "@jonloucks/contracts-ts/auxiliary/Checks";
/**
* Exception thrown when an illegal argument is provided.
* Note: This can not extend ContractException due to circular dependency.
*/
export class IllegalArgumentException extends Error {
constructor(message: string, thrown: Error | null = null) {
// super(messageCheck(message), thrown || undefined);
super(messageCheck(message));
used(thrown);
this.name = "IllegalArgumentException";
Object.setPrototypeOf(this, IllegalArgumentException.prototype)
}
}
|