2015-05-28 13:19:25 +02:00
|
|
|
package org.gcube.accounting.exception;
|
|
|
|
|
|
|
|
public class InvalidValueException extends Exception {
|
|
|
|
|
2015-06-05 11:43:53 +02:00
|
|
|
/**
|
|
|
|
* Generated serial Version UID
|
|
|
|
*/
|
2015-05-28 13:19:25 +02:00
|
|
|
private static final long serialVersionUID = 4403699127526286772L;
|
|
|
|
|
|
|
|
public InvalidValueException() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
public InvalidValueException(String message) {
|
|
|
|
super(message);
|
|
|
|
}
|
2015-06-05 12:54:26 +02:00
|
|
|
|
|
|
|
public InvalidValueException(String message, Throwable cause) {
|
|
|
|
super(message, cause);
|
|
|
|
}
|
2015-06-09 14:54:14 +02:00
|
|
|
|
2015-05-28 13:19:25 +02:00
|
|
|
}
|