io.gdcc.xoai.dataprovider.exceptions.InternalOAIException 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;
public class InternalOAIException extends RuntimeException {
public InternalOAIException() {}
public InternalOAIException(String message) {
super(message);
}
public InternalOAIException(String message, Throwable cause) {
super(message, cause);
}
public InternalOAIException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy