ee.sk.smartid.exception.UserAccountException 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;
/**
* Subclasses of this exception are situation where something is wrong with user's Smart-ID account (or app) configuration.
* General practise is to display a notification and ask user to log in to Smart-ID self-service portal.
*/
public abstract class UserAccountException extends SmartIdException {
public UserAccountException(String s) {
super(s);
}
}