uk.gov.di.ipv.cri.common.library.exception.SessionExpiredException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cri-common-lib Show documentation
Show all versions of cri-common-lib Show documentation
Digital Identity Credential Issuer common libraries
The newest version!
package uk.gov.di.ipv.cri.common.library.exception;
public class SessionExpiredException extends RuntimeException {
public SessionExpiredException(String message) {
super(message);
}
public SessionExpiredException(String message, Throwable cause) {
super(message, cause);
}
public SessionExpiredException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy