UNPKG
medici
Version:
latest (7.3.0)
next (5.0.0-next.10)
7.3.0
7.2.0
7.1.0
7.0.3
7.0.2
7.0.1
7.0.0
6.3.3
6.3.2
6.3.1
6.3.0
6.2.0
6.1.0
6.0.0
5.2.2
5.2.1
5.2.0
5.1.0
5.0.0
5.0.0-next.10
5.0.0-next.9
5.0.0-next.8
5.0.0-next.7
5.0.0-next.6
5.0.0-next.5
5.0.0-next.4
5.0.0-next.3
5.0.0-next.2
5.0.0-next.1
5.0.0-next.0
4.0.2
4.0.1
4.0.0
3.0.2
3.0.1
3.0.0
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
0.12.2
0.12.1
0.12.0
0.11.2
0.11.1
0.11.0
0.10.1
0.10.0
0.9.2
0.9.1
0.9.0
0.7.1
0.7.0
0.6.4
0.6.3
0.6.2
0.6.0
0.5.0
0.1.0
Double-entry accounting ledger for Node + Mongoose
github.com/flash-oss/medici
flash-oss/medici
medici
/
build
/
errors
/
MediciError.js
12 lines
(11 loc)
•
298 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
MediciError
=
void
0
;
class
MediciError
extends
Error
{
constructor
(
message, code =
500
) {
super
(message);
this
.
code
=
500
;
this
.
code
= code; } }
exports
.
MediciError
=
MediciError
;