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

cl.transbank.webpay.exception.TransactionCaptureException Maven / Gradle / Ivy

The newest version!
package cl.transbank.webpay.exception;

/**
 * This class represents an exception that is thrown when a transaction capture operation fails.
 */
public class TransactionCaptureException extends WebpayException {

  /**
   * Constructs a new TransactionCaptureException with null as its detail message.
   */
  public TransactionCaptureException() {
    super();
  }

  /**
   * Constructs a new TransactionCaptureException with the specified cause.
   * @param e The cause of the exception.
   */
  public TransactionCaptureException(Exception e) {
    super(e);
  }

  /**
   * Constructs a new TransactionCaptureException with the specified detail message.
   * @param message The detail message.
   */
  public TransactionCaptureException(String message) {
    super(message);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy