com.chargebee.exceptions.InvalidRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chargebee-java Show documentation
Show all versions of chargebee-java Show documentation
Java client library for ChargeBee API
/*
* Copyright (c) 2011 chargebee.com
* All Rights Reserved.
*/
package com.chargebee.exceptions;
import com.chargebee.APIException;
import org.json.*;
public class InvalidRequestException extends APIException{
public InvalidRequestException(int httpStatusCode, String message, JSONObject jsonObj) {
super(httpStatusCode, message, jsonObj);
}
}