com.payu.sdk.api.exceptions.AuthenticationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
A fresh implementation of the PayU API Client for Android
The newest version!
package com.payu.sdk.api.exceptions;
public class AuthenticationException extends SDKException {
public AuthenticationException(Exception innerException) {
super(ErrorCode.HTTP_EXCEPTION, innerException);
}
public AuthenticationException() {
super(ErrorCode.HTTP_EXCEPTION);
}
public AuthenticationException(String message) {
super(ErrorCode.HTTP_EXCEPTION, message);
}
public AuthenticationException(String message, Exception innerException) {
super(ErrorCode.HTTP_EXCEPTION, message, innerException);
}
}