ajsfw
Version:
Ajs Framework
69 lines (68 loc) • 3.4 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var exceptions_1 = require("ajsfw/exceptions");
;
var InitializationFailedException = (function (_super) {
__extends(InitializationFailedException, _super);
function InitializationFailedException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return InitializationFailedException;
}(exceptions_1.Exception));
exports.InitializationFailedException = InitializationFailedException;
var IndexedDBNotSupportedException = (function (_super) {
__extends(IndexedDBNotSupportedException, _super);
function IndexedDBNotSupportedException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return IndexedDBNotSupportedException;
}(exceptions_1.Exception));
exports.IndexedDBNotSupportedException = IndexedDBNotSupportedException;
var IndexedDBFailedToOpenException = (function (_super) {
__extends(IndexedDBFailedToOpenException, _super);
function IndexedDBFailedToOpenException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return IndexedDBFailedToOpenException;
}(exceptions_1.Exception));
exports.IndexedDBFailedToOpenException = IndexedDBFailedToOpenException;
var IndexedDbNotInitializedException = (function (_super) {
__extends(IndexedDbNotInitializedException, _super);
function IndexedDbNotInitializedException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return IndexedDbNotInitializedException;
}(exceptions_1.Exception));
exports.IndexedDbNotInitializedException = IndexedDbNotInitializedException;
var FailedToCreateIndexedDbObjectStoreException = (function (_super) {
__extends(FailedToCreateIndexedDbObjectStoreException, _super);
function FailedToCreateIndexedDbObjectStoreException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return FailedToCreateIndexedDbObjectStoreException;
}(exceptions_1.Exception));
exports.FailedToCreateIndexedDbObjectStoreException = FailedToCreateIndexedDbObjectStoreException;
var StoreNotExitsException = (function (_super) {
__extends(StoreNotExitsException, _super);
function StoreNotExitsException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return StoreNotExitsException;
}(exceptions_1.Exception));
exports.StoreNotExitsException = StoreNotExitsException;
var IndexedDbStoreRequestFailedException = (function (_super) {
__extends(IndexedDbStoreRequestFailedException, _super);
function IndexedDbStoreRequestFailedException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return IndexedDbStoreRequestFailedException;
}(exceptions_1.Exception));
exports.IndexedDbStoreRequestFailedException = IndexedDbStoreRequestFailedException;
var IndexedDbOldFailedToSetVersionException = (function (_super) {
__extends(IndexedDbOldFailedToSetVersionException, _super);
function IndexedDbOldFailedToSetVersionException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return IndexedDbOldFailedToSetVersionException;
}(exceptions_1.Exception));
exports.IndexedDbOldFailedToSetVersionException = IndexedDbOldFailedToSetVersionException;