All files / src/environment exceptions.js

100% Statements 8/8
100% Branches 0/0
100% Functions 3/3
100% Lines 8/8

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;