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); } }