com.payu.sdk.api.exceptions.NetworkException 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 NetworkException extends SDKException {
public NetworkException(Exception innerException) {
super(ErrorCode.NETWORK_EXCEPTION, innerException);
}
public NetworkException() {
super(ErrorCode.NETWORK_EXCEPTION);
}
public NetworkException(String message) {
super(ErrorCode.NETWORK_EXCEPTION, message);
}
public NetworkException(String message, Exception innerException) {
super(ErrorCode.NETWORK_EXCEPTION, message, innerException);
}
}