UNPKG

286 BJavaScriptView Raw
1/**
2 * An error that will be thrown if the authentication process
3 * was failed.
4 */
5class UnAuthenticated extends Error {
6 constructor(message) {
7 super();
8 this.message = message;
9 }
10
11 get code() {
12 return 401;
13 }
14}
15
16module.exports = UnAuthenticated;