ee.sk.smartid.exception.UnprocessableSmartIdResponseException 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;
import ee.sk.smartid.exception.permanent.SmartIdClientException;
public class UnprocessableSmartIdResponseException extends SmartIdClientException {
public UnprocessableSmartIdResponseException(String message) {
super(message);
}
public UnprocessableSmartIdResponseException(String s, Exception e) {
super(s, e);
}
}