parent
9d9d0e3fe0
commit
fdd2865050
|
@ -0,0 +1,23 @@
|
|||
package org.gcube.informationsystem.resourceregistry.api.exceptions.schema;
|
||||
|
||||
import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException;
|
||||
|
||||
public class SchemaViolationException extends ResourceRegistryException {
|
||||
|
||||
/**
|
||||
* Generated Serial Version UID
|
||||
*/
|
||||
private static final long serialVersionUID = -2563703637351710301L;
|
||||
|
||||
public SchemaViolationException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public SchemaViolationException(Throwable cause) {
|
||||
super(cause);
|
||||
}
|
||||
|
||||
public SchemaViolationException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue