15 lines
469 B
Java
15 lines
469 B
Java
package org.lucares.pdbui;
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
import org.springframework.web.bind.annotation.ResponseStatus;
|
|
|
|
@ResponseStatus(value = HttpStatus.SERVICE_UNAVAILABLE, reason = "Service Unavailable")
|
|
public class ServiceUnavailableException extends RuntimeException {
|
|
|
|
private static final long serialVersionUID = -4512668277873760500L;
|
|
|
|
public ServiceUnavailableException(String message) {
|
|
super(message);
|
|
}
|
|
}
|