![JAR search and dependency download from the Maven repository](/logo.png)
com.payu.sdk.api.exceptions.PayUException 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 PayUException extends SDKException {
public PayUException(ErrorCode errorCode, String message, Exception innerException) {
super(errorCode, message, innerException);
}
public PayUException(ErrorCode errorCode, String message) {
super(errorCode, message);
}
public PayUException(ErrorCode errorCode, Exception innerException) {
super(errorCode, innerException);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy