ionic-orm-2
Version:
Data-mapper ORM for Ionic WebSQL and SQLite
13 lines • 453 B
JavaScript
/**
* Thrown if some required driver's option is not set.
*/
/**
* Thrown if some required driver's option is not set.
*/ export class DriverOptionNotSetError extends Error {
constructor(optionName) {
super();
this.name = "DriverOptionNotSetError";
this.message = `Driver option (${optionName}) is not set. Please set it to perform connection to the database.`;
}
}
//# sourceMappingURL=DriverOptionNotSetError.js.map