ionic-orm-2
Version:
Data-mapper ORM for Ionic WebSQL and SQLite
13 lines • 513 B
JavaScript
/**
* Thrown when user tries to execute operation that requires connection to be established.
*/
/**
* Thrown when user tries to execute operation that requires connection to be established.
*/ export class ConnectionIsNotSetError extends Error {
constructor(dbType) {
super();
this.name = "ConnectionIsNotSetError";
this.message = `Connection with ${dbType} database is not established. Check connection configuration.`;
}
}
//# sourceMappingURL=ConnectionIsNotSetError.js.map