File size: 459 Bytes
688925d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.dalab.autocompliance.service.exception;

import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;

@ResponseStatus(HttpStatus.NOT_FOUND)
public class ControlNotFoundException extends RuntimeException {
    public ControlNotFoundException(String message) {
        super(message);
    }

    public ControlNotFoundException(String message, Throwable cause) {
        super(message, cause);
    }
}