UNPKG

554 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 });
10class NgToolkitError extends Error {
11 constructor(message) {
12 super();
13 if (message) {
14 this.message = message;
15 }
16 else {
17 this.message = this.constructor.name;
18 }
19 }
20}
21exports.NgToolkitError = NgToolkitError;