ResourceNotFoundException(String)   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 2
c 0
b 0
f 0
rs 10
cc 1
1
package com.osomapps.pt;
2
3
import org.springframework.http.HttpStatus;
4
import org.springframework.web.bind.annotation.ResponseStatus;
5
6
@ResponseStatus(value = HttpStatus.NOT_FOUND)
7
public class ResourceNotFoundException extends RuntimeException {
8
9
    public ResourceNotFoundException() {}
10
11
    public ResourceNotFoundException(String message) {
12
        super(message);
13
    }
14
}
15