ee.sk.smartid.exception.EnduringSmartIdException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smart-id-java-client Show documentation
Show all versions of smart-id-java-client Show documentation
Smart-ID Java client is a Java library that can be used for easy integration of the Smart-ID solution to information systems or e-services
package ee.sk.smartid.exception;
/**
* Exceptions that subclass this mark situations where something is wrong with
* client-side integration or how Relying Party account has been configured by Smart-ID operator
* or Smart-ID server is under maintenance.
* With these types of errors there is not recommended to ask the user for immediate retry.
*/
public abstract class EnduringSmartIdException extends SmartIdException {
public EnduringSmartIdException(String message) {
super(message);
}
public EnduringSmartIdException(String message, Throwable cause) {
super(message, cause);
}
}