@we-scrum/errors
Advanced tools
| import { ErrorBase } from './error-base'; | ||
| export declare class NotImplementedError extends Error implements ErrorBase { | ||
| constructor(); | ||
| } |
| "use strict"; | ||
| var __extends = (this && this.__extends) || (function () { | ||
| var extendStatics = Object.setPrototypeOf || | ||
| ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
| function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
| return function (d, b) { | ||
| extendStatics(d, b); | ||
| function __() { this.constructor = d; } | ||
| d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
| }; | ||
| })(); | ||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||
| var NotImplementedError = /** @class */ (function (_super) { | ||
| __extends(NotImplementedError, _super); | ||
| function NotImplementedError() { | ||
| var _this = _super.call(this, 'Not implemented') || this; | ||
| _this.name = 'NotImplementedError'; | ||
| return _this; | ||
| } | ||
| return NotImplementedError; | ||
| }(Error)); | ||
| exports.NotImplementedError = NotImplementedError; | ||
| //# sourceMappingURL=not-implemented-error.js.map |
| {"version":3,"file":"not-implemented-error.js","sourceRoot":"","sources":["../src/not-implemented-error.ts"],"names":[],"mappings":";;;;;;;;;;;;AAEA;IAAyC,uCAAK;IAC1C;QAAA,YACI,kBAAM,iBAAiB,CAAC,SAE3B;QADG,KAAI,CAAC,IAAI,GAAG,qBAAqB,CAAC;;IACtC,CAAC;IACL,0BAAC;AAAD,CAAC,AALD,CAAyC,KAAK,GAK7C;AALY,kDAAmB"} |
Sorry, the diff of this file is not supported yet
+1
-0
@@ -5,2 +5,3 @@ export * from './error-base'; | ||
| export * from './not-found-error'; | ||
| export * from './not-implemented-error'; | ||
| export * from './unauthorized-error'; |
+1
-0
@@ -9,3 +9,4 @@ "use strict"; | ||
| __export(require("./not-found-error")); | ||
| __export(require("./not-implemented-error")); | ||
| __export(require("./unauthorized-error")); | ||
| //# sourceMappingURL=index.js.map |
+1
-1
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;AAEA,yCAAoC;AACpC,uCAAkC;AAClC,uCAAkC;AAClC,0CAAqC"} | ||
| {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;AAEA,yCAAoC;AACpC,uCAAkC;AAClC,uCAAkC;AAClC,6CAAwC;AACxC,0CAAqC"} |
+1
-1
| { | ||
| "name": "@we-scrum/errors", | ||
| "version": "1.0.1", | ||
| "version": "1.0.2", | ||
| "description": "We-scrum errors", | ||
@@ -5,0 +5,0 @@ "module": "index.js", |
Sorry, the diff of this file is not supported yet
11986
17.59%23
15%159
21.37%