All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.payu.sdk.api.exceptions.PayUException Maven / Gradle / Ivy

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