uk.gov.di.ipv.cri.common.library.exception.AccessTokenRequestException 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;
import com.nimbusds.oauth2.sdk.ErrorObject;
import com.nimbusds.oauth2.sdk.ParseException;
public class AccessTokenRequestException extends ParseException {
public AccessTokenRequestException(ErrorObject error) {
super(error.getCode(), error);
}
public AccessTokenRequestException(String message, ErrorObject error) {
super(message, error);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy