testtrack-cli
Version:
Submit your automated test runs to your Test Track account project
12 lines • 498 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvalidCommandException = void 0;
class InvalidCommandException extends Error {
constructor(message) {
super(message);
// Set the prototype explicitly (needed to support instanceof checks in TypeScript)
Object.setPrototypeOf(this, InvalidCommandException.prototype);
}
}
exports.InvalidCommandException = InvalidCommandException;
//# sourceMappingURL=InvalidCommandException.js.map