error.js 554 B

123456789101112131415161718192021
  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. */
  9. Object.defineProperty(exports, "__esModule", { value: true });
  10. class 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. }
  21. exports.NgToolkitError = NgToolkitError;