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