| Total Complexity | 1 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | package com.base.Exceptions.Http; |
||
| 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 | } |
||
| 19 |