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

com.mercadopago.exceptions.MPJsonParseException Maven / Gradle / Ivy

There is a newer version: 2.1.29
Show newest version
package com.mercadopago.exceptions;

/** MPJsonParseException class. */
public class MPJsonParseException extends MPException {
  /**
   * MPJsonParseException constructor.
   *
   * @param message message
   */
  public MPJsonParseException(String message) {
    super(message);
  }

  /**
   * MPJsonParseException constructor.
   *
   * @param message message
   * @param throwable throwable
   */
  public MPJsonParseException(String message, Throwable throwable) {
    super(message, throwable);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy