Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@tsdotnet/exceptions

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tsdotnet/exceptions - npm Package Compare versions

Comparing version 1.0.18 to 1.0.19

2

dist/ArgumentException.js

@@ -9,3 +9,3 @@ "use strict";

const tslib_1 = require("tslib");
const SystemException_1 = (0, tslib_1.__importDefault)(require("./SystemException"));
const SystemException_1 = tslib_1.__importDefault(require("./SystemException"));
const NAME = 'ArgumentException';

@@ -12,0 +12,0 @@ class ArgumentException extends SystemException_1.default {

@@ -9,3 +9,3 @@ "use strict";

const tslib_1 = require("tslib");
const ArgumentException_1 = (0, tslib_1.__importDefault)(require("./ArgumentException"));
const ArgumentException_1 = tslib_1.__importDefault(require("./ArgumentException"));
const NAME = 'ArgumentNullException';

@@ -12,0 +12,0 @@ class ArgumentNullException extends ArgumentException_1.default {

@@ -7,3 +7,3 @@ /*!

import ArgumentException from './ArgumentException';
declare type Primitive = string | number | boolean;
type Primitive = string | number | boolean;
export default class ArgumentOutOfRangeException extends ArgumentException {

@@ -10,0 +10,0 @@ readonly actualValue: Primitive | null | undefined;

@@ -9,3 +9,3 @@ "use strict";

const tslib_1 = require("tslib");
const ArgumentException_1 = (0, tslib_1.__importDefault)(require("./ArgumentException"));
const ArgumentException_1 = tslib_1.__importDefault(require("./ArgumentException"));
const NAME = 'ArgumentOutOfRangeException';

@@ -12,0 +12,0 @@ class ArgumentOutOfRangeException extends ArgumentException_1.default {

@@ -5,19 +5,19 @@ "use strict";

const tslib_1 = require("tslib");
const Exception_1 = (0, tslib_1.__importDefault)(require("./Exception"));
const Exception_1 = tslib_1.__importDefault(require("./Exception"));
exports.Exception = Exception_1.default;
const SystemException_1 = (0, tslib_1.__importDefault)(require("./SystemException"));
const SystemException_1 = tslib_1.__importDefault(require("./SystemException"));
exports.SystemException = SystemException_1.default;
const ArgumentException_1 = (0, tslib_1.__importDefault)(require("./ArgumentException"));
const ArgumentException_1 = tslib_1.__importDefault(require("./ArgumentException"));
exports.ArgumentException = ArgumentException_1.default;
const ArgumentNullException_1 = (0, tslib_1.__importDefault)(require("./ArgumentNullException"));
const ArgumentNullException_1 = tslib_1.__importDefault(require("./ArgumentNullException"));
exports.ArgumentNullException = ArgumentNullException_1.default;
const ArgumentOutOfRangeException_1 = (0, tslib_1.__importDefault)(require("./ArgumentOutOfRangeException"));
const ArgumentOutOfRangeException_1 = tslib_1.__importDefault(require("./ArgumentOutOfRangeException"));
exports.ArgumentOutOfRangeException = ArgumentOutOfRangeException_1.default;
const InvalidOperationException_1 = (0, tslib_1.__importDefault)(require("./InvalidOperationException"));
const InvalidOperationException_1 = tslib_1.__importDefault(require("./InvalidOperationException"));
exports.InvalidOperationException = InvalidOperationException_1.default;
const NotImplementedException_1 = (0, tslib_1.__importDefault)(require("./NotImplementedException"));
const NotImplementedException_1 = tslib_1.__importDefault(require("./NotImplementedException"));
exports.NotImplementedException = NotImplementedException_1.default;
const NullReferenceException_1 = (0, tslib_1.__importDefault)(require("./NullReferenceException"));
const NullReferenceException_1 = tslib_1.__importDefault(require("./NullReferenceException"));
exports.NullReferenceException = NullReferenceException_1.default;
exports.default = Exception_1.default;
//# sourceMappingURL=index.js.map

@@ -9,3 +9,3 @@ "use strict";

const tslib_1 = require("tslib");
const SystemException_1 = (0, tslib_1.__importDefault)(require("./SystemException"));
const SystemException_1 = tslib_1.__importDefault(require("./SystemException"));
const NAME = 'InvalidOperationException';

@@ -12,0 +12,0 @@ class InvalidOperationException extends SystemException_1.default {

@@ -9,3 +9,3 @@ "use strict";

const tslib_1 = require("tslib");
const SystemException_1 = (0, tslib_1.__importDefault)(require("./SystemException"));
const SystemException_1 = tslib_1.__importDefault(require("./SystemException"));
const NAME = 'NotImplementedException';

@@ -12,0 +12,0 @@ class NotImplementedException extends SystemException_1.default {

@@ -9,3 +9,3 @@ "use strict";

const tslib_1 = require("tslib");
const SystemException_1 = (0, tslib_1.__importDefault)(require("./SystemException"));
const SystemException_1 = tslib_1.__importDefault(require("./SystemException"));
const NAME = 'NullReferenceException';

@@ -12,0 +12,0 @@ class NullReferenceException extends SystemException_1.default {

@@ -9,3 +9,3 @@ "use strict";

const tslib_1 = require("tslib");
const Exception_1 = (0, tslib_1.__importDefault)(require("./Exception"));
const Exception_1 = tslib_1.__importDefault(require("./Exception"));
const NAME = 'SystemException';

@@ -12,0 +12,0 @@ class SystemException extends Exception_1.default {

{
"name": "@tsdotnet/exceptions",
"version": "1.0.18",
"version": "1.0.19",
"description": "",

@@ -30,3 +30,3 @@ "author": "electricessence",

"preversion": "run-p lint test",
"postversion": "git push && git push --tags && npm run-script docs && git commit -m \"Updated docs.\" docs && git push",
"postversion": "git push && git push --tags && npm run-script docs && git add -A && git commit -m \"Updated docs.\" docs && git push",
"test": "mocha -r ts-node/register tests/**/*.ts",

@@ -44,25 +44,25 @@ "validate": "node ./.build/validate-package.js"

"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"chai": "^4.3.7",
"copyfiles": "^2.4.1",
"eslint": "^8.8.0",
"eslint": "^8.30.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^9.2.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
"ts-node": "^10.9.1",
"typedoc": "^0.23.22",
"typescript": "^4.9.4"
},
"dependencies": {
"tslib": "^2.3.1"
"tslib": "^2.4.1"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc