-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy patherrors.js
60 lines (53 loc) · 1.17 KB
/
errors.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
'use strict';
class TldrError extends Error {
constructor(message) {
super(message);
this.name = 'TldrError';
}
static isTldrError(err) {
return err instanceof this;
}
}
class EmptyCacheError extends TldrError {
constructor() {
super(trim`
Local cache is empty
Please run tldr --update
`);
this.name = 'EmptyCacheError';
// eslint-disable-next-line no-magic-numbers
this.code = 2;
}
}
class MissingPageError extends TldrError {
constructor(repo) {
super(trim`
Page not found.
If you want to contribute it, feel free to send a pull request to: ${repo}
`);
this.name = 'MissingPageError';
// eslint-disable-next-line no-magic-numbers
this.code = 3;
}
}
class MissingRenderPathError extends TldrError {
constructor() {
super(trim`
Option --render needs an argument.
`);
this.name = 'MissingRenderPathError';
this.code = 4;
}
}
module.exports = {
TldrError,
EmptyCacheError,
MissingPageError,
MissingRenderPathError
};
function trim(strings, ...values) {
let output = values.reduce((acc, value, i) => {
return acc + strings[i] + value;
}, '') + strings[values.length];
return output.trim();
}