Ajay Yadav
Initial deployment of da-autocompliance-dev
688925d
raw
history blame
459 Bytes
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);
}
}