UNPKG

587 BJavaScriptView Raw
1"use strict";
2/**
3 * @license
4 * Copyright Google Inc. 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.NgToolkitError = void 0;
11class NgToolkitError extends Error {
12 constructor(message) {
13 super();
14 if (message) {
15 this.message = message;
16 }
17 else {
18 this.message = this.constructor.name;
19 }
20 }
21}
22exports.NgToolkitError = NgToolkitError;