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 19 20 21 22 | 1x 1x 12x 1x 1x 1x 9x 1x | "use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotInitializedException = exports.FileNotFoundException = exports.InvalidOperationException = void 0;
class InvalidOperationException extends Error {
constructor(message) {
super(`InvalidOperation: ${message}.`);
}
}
exports.InvalidOperationException = InvalidOperationException;
class FileNotFoundException extends Error {
constructor(message) {
super(`FileNotFound: ${message}.`);
}
}
exports.FileNotFoundException = FileNotFoundException;
class NotInitializedException extends InvalidOperationException {
constructor(name) {
super(`${name} is not initialized`);
}
}
exports.NotInitializedException = NotInitializedException;
|