Added SchemaViolationException refs #7355 #18216 #20531

This commit is contained in:
Luca Frosini 2021-02-16 17:01:26 +01:00
parent 9d9d0e3fe0
commit fdd2865050
1 changed files with 23 additions and 0 deletions

View File

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