1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-01 09:10:45 +00:00
falk-werner_webfuse-provider/example/daemon/www/js/wsfs/bad_state.js

15 lines
390 B
JavaScript
Raw Normal View History

2019-02-21 23:35:59 +00:00
export class BadState extends Error {
static get BAD() { return 1; }
static get NOT_IMPLEMENTED() { return 2; }
static get TIMEOUT() { return 3; }
static get FORMAT() { return 4; }
static get NO_ENTRY() { return 101; }
static get NO_ACCESS() { return 102; }
constructor(code) {
super("Bad State");
this.code = code;
}
}