io.gdcc.xoai.serviceprovider.exceptions.NoRecordsMatchException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xoai-service-provider Show documentation
Show all versions of xoai-service-provider Show documentation
OAI-PMH service provider implementation. Use it as a harvesting client to read remote repositories.
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.serviceprovider.exceptions;
public class NoRecordsMatchException extends HarvestException {
/** */
private static final long serialVersionUID = -4301316258437125256L;
public NoRecordsMatchException() {}
public NoRecordsMatchException(String arg0) {
super(arg0);
}
public NoRecordsMatchException(Throwable arg0) {
super(arg0);
}
public NoRecordsMatchException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
}