com.eligible.exception.EligibleException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eligible-java Show documentation
Show all versions of eligible-java Show documentation
Java bindings for Eligible APIs (https://eligible.com).
package com.eligible.exception;
/**
* Eligible base exception class.
*/
public abstract class EligibleException extends Exception {
/**
* Create Eligible Exception.
*
* @param message the detail message.
*/
public EligibleException(String message) {
super(message);
}
/**
* Create Eligible Exception.
*
* @param message the detail message.
* @param e root cause.
*/
public EligibleException(String message, Throwable e) {
super(message, e);
}
private static final long serialVersionUID = 1L;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy