UNPKG

886 BJavaScriptView Raw
1"use strict";
2/**
3 * @license
4 * Copyright Google LLC All Rights Reserved.
5 *
6 * Use of this source code is governed by an MIT-style license that can be
7 * found in the LICENSE file at https://angular.io/license
8 */
9Object.defineProperty(exports, "__esModule", { value: true });
10exports.JobDoesNotExistException = exports.JobNameAlreadyRegisteredException = void 0;
11const core_1 = require("@angular-devkit/core");
12class JobNameAlreadyRegisteredException extends core_1.BaseException {
13 constructor(name) {
14 super(`Job named ${JSON.stringify(name)} already exists.`);
15 }
16}
17exports.JobNameAlreadyRegisteredException = JobNameAlreadyRegisteredException;
18class JobDoesNotExistException extends core_1.BaseException {
19 constructor(name) {
20 super(`Job name ${JSON.stringify(name)} does not exist.`);
21 }
22}
23exports.JobDoesNotExistException = JobDoesNotExistException;