UNPKG
ionic-orm-x
Version:
latest (0.0.8)
0.0.8
0.0.7
Data-mapper ORM for Ionic WebSQL and SQLite
github.com/jeansantana/ionic-orm
jeansantana/ionic-orm
ionic-orm-x
/
src
/
connection
/
error
/
AlreadyHasActiveConnectionError.d.ts
8 lines
(7 loc)
•
255 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** * Thrown when consumer tries to recreate connection with the same name, but previous connection was not closed yet. */
export
declare
class
AlreadyHasActiveConnectionError
extends
Error
{ name:
string
;
constructor
(
connectionName
:
string
); }