NotFound(int,String,Response)   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 2
rs 10
cc 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