ionic-orm-2
Version:
Data-mapper ORM for Ionic WebSQL and SQLite
13 lines • 523 B
JavaScript
/**
* Thrown when transaction is already started and user tries to run it again.
*/
/**
* Thrown when transaction is already started and user tries to run it again.
*/ export class TransactionAlreadyStartedError extends Error {
constructor() {
super();
this.name = "TransactionAlreadyStartedError";
this.message = `Transaction already started for the given connection, commit current transaction before starting a new one.`;
}
}
//# sourceMappingURL=TransactionAlreadyStartedError.js.map