Spaces:
Build error
Build error
da-autocompliance-dev / src /main /java /com /dalab /autocompliance /service /exception /ControlNotFoundException.java
| package com.dalab.autocompliance.service.exception; | |
| import org.springframework.http.HttpStatus; | |
| import org.springframework.web.bind.annotation.ResponseStatus; | |
| public class ControlNotFoundException extends RuntimeException { | |
| public ControlNotFoundException(String message) { | |
| super(message); | |
| } | |
| public ControlNotFoundException(String message, Throwable cause) { | |
| super(message, cause); | |
| } | |
| } |