UNPKG
abyjs.db
Version:
latest (3.3.3)
3.3.3
2.2.2
2.1.1
2.0.1
abyjs.db - A Database with Speed and Optimization.
abyjs.db
/
src
/
structures
/
DatabaseError.js
11 lines
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * The
class
for
throwing
database
errors
* @
param
{string} the error to throw. *
@type
{DatabaseError}
*
@return
{DatabaseError}
The error thrown */ module.exports =
class
DatabaseError
extends
Error
{ constructor(error) { super(error) } }