UNPKG

ajsfw

Version:
52 lines (51 loc) 2.55 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var exceptions_1 = require("ajsfw/exceptions"); var LocalStorageNotSupportedException = (function (_super) { __extends(LocalStorageNotSupportedException, _super); function LocalStorageNotSupportedException() { return _super !== null && _super.apply(this, arguments) || this; } return LocalStorageNotSupportedException; }(exceptions_1.Exception)); exports.LocalStorageNotSupportedException = LocalStorageNotSupportedException; var SessionStorageNotSupportedException = (function (_super) { __extends(SessionStorageNotSupportedException, _super); function SessionStorageNotSupportedException() { return _super !== null && _super.apply(this, arguments) || this; } return SessionStorageNotSupportedException; }(exceptions_1.Exception)); exports.SessionStorageNotSupportedException = SessionStorageNotSupportedException; var IndexedDbStorageNotSupportedException = (function (_super) { __extends(IndexedDbStorageNotSupportedException, _super); function IndexedDbStorageNotSupportedException() { return _super !== null && _super.apply(this, arguments) || this; } return IndexedDbStorageNotSupportedException; }(exceptions_1.Exception)); exports.IndexedDbStorageNotSupportedException = IndexedDbStorageNotSupportedException; var NotEnoughSpaceInStorageException = (function (_super) { __extends(NotEnoughSpaceInStorageException, _super); function NotEnoughSpaceInStorageException() { return _super !== null && _super.apply(this, arguments) || this; } return NotEnoughSpaceInStorageException; }(exceptions_1.Exception)); exports.NotEnoughSpaceInStorageException = NotEnoughSpaceInStorageException; var InvalidStorageTypeException = (function (_super) { __extends(InvalidStorageTypeException, _super); function InvalidStorageTypeException() { return _super !== null && _super.apply(this, arguments) || this; } return InvalidStorageTypeException; }(exceptions_1.Exception)); exports.InvalidStorageTypeException = InvalidStorageTypeException; var AjsIndexedDbNotSetException = (function (_super) { __extends(AjsIndexedDbNotSetException, _super); function AjsIndexedDbNotSetException() { return _super !== null && _super.apply(this, arguments) || this; } return AjsIndexedDbNotSetException; }(exceptions_1.Exception)); exports.AjsIndexedDbNotSetException = AjsIndexedDbNotSetException;