argos/dmp-backend/queryable/src/main/java/eu/eudat/queryable/exceptions/NotSingleResultException.java

20 lines
448 B
Java
Raw Normal View History

2018-01-30 13:23:47 +01:00
package eu.eudat.queryable.exceptions;
2018-02-01 10:08:06 +01:00
2018-02-16 11:34:02 +01:00
public class NotSingleResultException extends RuntimeException {
2018-01-30 13:23:47 +01:00
public NotSingleResultException() {
super();
}
2018-02-16 11:34:02 +01:00
2018-01-30 13:23:47 +01:00
public NotSingleResultException(String message, Throwable cause) {
super(message, cause);
}
2018-02-16 11:34:02 +01:00
2018-01-30 13:23:47 +01:00
public NotSingleResultException(String message) {
super(message);
}
2018-02-16 11:34:02 +01:00
2018-01-30 13:23:47 +01:00
public NotSingleResultException(Throwable cause) {
super(cause);
}
}