@hg-ts/exception 0.1.56 → 0.1.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,4 +6,5 @@ export * from './unknown.exception';
6
6
  export * from './not-implemented.exception';
7
7
  export * from './will-never-happened.exception';
8
8
  export * from './forbidden.exception';
9
+ export * from './invalid-input.exception';
9
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/exceptions/index.ts"],"names":[],"mappings":"AACA,cAAc,mBAAmB,CAAC;AAClC,cAAc,6BAA6B,CAAC;AAE5C,cAAc,kBAAkB,CAAC;AACjC,cAAc,4BAA4B,CAAC;AAE3C,cAAc,qBAAqB,CAAC;AACpC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,iCAAiC,CAAC;AAChD,cAAc,uBAAuB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/exceptions/index.ts"],"names":[],"mappings":"AACA,cAAc,mBAAmB,CAAC;AAClC,cAAc,6BAA6B,CAAC;AAE5C,cAAc,kBAAkB,CAAC;AACjC,cAAc,4BAA4B,CAAC;AAE3C,cAAc,qBAAqB,CAAC;AACpC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,iCAAiC,CAAC;AAChD,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC"}
@@ -9,4 +9,5 @@ tslib_1.__exportStar(require("./unknown.exception"), exports);
9
9
  tslib_1.__exportStar(require("./not-implemented.exception"), exports);
10
10
  tslib_1.__exportStar(require("./will-never-happened.exception"), exports);
11
11
  tslib_1.__exportStar(require("./forbidden.exception"), exports);
12
+ tslib_1.__exportStar(require("./invalid-input.exception"), exports);
12
13
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/exceptions/index.ts"],"names":[],"mappings":";;;AACA,4DAAkC;AAClC,sEAA4C;AAE5C,2DAAiC;AACjC,qEAA2C;AAE3C,8DAAoC;AACpC,sEAA4C;AAC5C,0EAAgD;AAChD,gEAAsC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/exceptions/index.ts"],"names":[],"mappings":";;;AACA,4DAAkC;AAClC,sEAA4C;AAE5C,2DAAiC;AACjC,qEAA2C;AAE3C,8DAAoC;AACpC,sEAA4C;AAC5C,0EAAgD;AAChD,gEAAsC;AACtC,oEAA0C"}
@@ -0,0 +1,4 @@
1
+ import { BaseException } from './base.exception';
2
+ export declare class InvalidInputException extends BaseException {
3
+ }
4
+ //# sourceMappingURL=invalid-input.exception.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invalid-input.exception.d.ts","sourceRoot":"","sources":["../../src/exceptions/invalid-input.exception.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,qBAAa,qBAAsB,SAAQ,aAAa;CAAG"}
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InvalidInputException = void 0;
4
+ const base_exception_1 = require("./base.exception");
5
+ class InvalidInputException extends base_exception_1.BaseException {
6
+ }
7
+ exports.InvalidInputException = InvalidInputException;
8
+ //# sourceMappingURL=invalid-input.exception.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invalid-input.exception.js","sourceRoot":"","sources":["../../src/exceptions/invalid-input.exception.ts"],"names":[],"mappings":";;;AAAA,qDAAiD;AAEjD,MAAa,qBAAsB,SAAQ,8BAAa;CAAG;AAA3D,sDAA2D"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hg-ts/exception",
3
- "version": "0.1.56",
3
+ "version": "0.1.58",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js"
@@ -16,10 +16,10 @@
16
16
  "test:dev": "yarn build:dev --onSuccess \"yarn test\""
17
17
  },
18
18
  "devDependencies": {
19
- "@hg-ts-config/typescript": "0.1.56",
20
- "@hg-ts/linter": "0.1.56",
21
- "@hg-ts/tests": "0.1.56",
22
- "@hg-ts/types": "0.1.56",
19
+ "@hg-ts-config/typescript": "0.1.58",
20
+ "@hg-ts/linter": "0.1.58",
21
+ "@hg-ts/tests": "0.1.58",
22
+ "@hg-ts/types": "0.1.58",
23
23
  "@types/node": "22.10.6",
24
24
  "eslint": "9.18.0",
25
25
  "reflect-metadata": "0.2.2",