All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xbib.oai.exceptions.OAIException Maven / Gradle / Ivy

package org.xbib.oai.exceptions;

/**
 *
 */
public class OAIException extends RuntimeException {

    private static final long serialVersionUID = -1890146067179892744L;

    public OAIException(String message) {
        super(message);
    }

    public OAIException(Throwable throwable) {
        super(throwable);
    }
    
    public OAIException(String message, Throwable throwable) {
        super(message, throwable);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy