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

com.kosprov.jargon2.spi.Jargon2BackendException Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package com.kosprov.jargon2.spi;

import com.kosprov.jargon2.api.Jargon2Exception;

/**
 * Generic exception from a Jargon2 backend.
 */
public class Jargon2BackendException extends Jargon2Exception{

    public Jargon2BackendException() {
    }

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

    public Jargon2BackendException(String message, Throwable cause) {
        super(message, cause);
    }

    public Jargon2BackendException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy