com.base.Exceptions.Http.NotFound   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 11
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A NotFound(int,String,Response) 0 2 1
1
package com.base.Exceptions.Http;
2
3
import com.base.Exceptions.BaseHttpException;
4
import com.base.Http.Response.Response;
5
6
public class NotFound extends BaseHttpException {
7
8
    /**
9
     * Construct {@link NotFound} with Status code , Error Message and Response
10
     *
11
     * @param code     Status Code
12
     * @param message  Error Message
13
     * @param response Response
14
     */
15
    public NotFound(int code, String message, Response response) {
16
        super(code, message, response);
17
    }
18
}
19