io.gdcc.xoai.dataprovider.exceptions.handler.HandlerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xoai-data-provider Show documentation
Show all versions of xoai-data-provider Show documentation
OAI-PMH data provider implementation. Use it to build an OAI-PMH endpoint, providing your data records as harvestable resources.
The newest version!
/*
* The contents of this file are subject to the license and copyright
* detailed in the LICENSE and NOTICE files at the root of the source
* tree and available online at
*
* http://www.dspace.org/license/
*/
package io.gdcc.xoai.dataprovider.exceptions.handler;
import io.gdcc.xoai.exceptions.OAIException;
public abstract class HandlerException extends OAIException {
private static final long serialVersionUID = 3141316350056438361L;
protected HandlerException() {
super();
}
protected HandlerException(String message, Throwable cause) {
super(message, cause);
}
protected HandlerException(String message) {
super(message);
}
protected HandlerException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy