Passed
Push — main ( 0e3197...a3863e )
by Pieter Epeüs
04:16 queued 01:18
created

src/rate-limit-error.js   A

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 25
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
eloc 8
mnd 0
bc 0
fnc 2
dl 0
loc 25
ccs 3
cts 3
cp 1
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
rs 10

2 Functions

Rating   Name   Duplication   Size   Complexity  
A RateLimitError.errorStatus 0 3 1
A RateLimitError.name 0 3 1
1
import makeAppError from './app-error.js';
2
3 9
const AppError = makeAppError(TypeError);
4
5
class RateLimitError extends AppError {
6
    /**
7
     * Get the error name
8
     *
9
     * @return {string}
10
     */
11
    get name() {
12 7
        return 'RateLimitError';
13
    }
14
15
    /**
16
     * Get the error status
17
     *
18
     * @return {number}
19
     */
20
    get errorStatus() {
21 4
        return 429;
22
    }
23
}
24
25
export default RateLimitError;
26