return information about the plotted sequences

this information can be used for tests
This commit is contained in:
2017-04-01 18:27:43 +02:00
parent 2875237272
commit 46ce445010
8 changed files with 84 additions and 55 deletions

View File

@@ -0,0 +1,18 @@
package org.lucares.pdbui;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
@ResponseStatus(value = HttpStatus.BAD_REQUEST, reason = "BadRequest")
public class BadRequest extends RuntimeException {
private static final long serialVersionUID = 694206253376122420L;
public BadRequest(final String message, final Throwable cause) {
super(message, cause);
}
public BadRequest(final Throwable cause) {
super(cause);
}
}