Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### v3.36.1 (2025-09-16)
* * *

### Deprecated Attribute:
* The `message` field has been made private in APIException, as it has long been deprecated.
* Users should use the `getMessage()` method instead, as documented in the comments.

### New Exception
* New `APIException` `UbbBatchIngestionInvalidRequestException` has been added.

### v3.36.0 (2025-08-19)
* * *

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.chargebee</groupId>
<artifactId>chargebee-java</artifactId>
<version>3.36.0</version>
<version>3.36.1</version>


<packaging>jar</packaging>
Expand Down
8 changes: 2 additions & 6 deletions src/main/java/com/chargebee/APIException.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,8 @@ public class APIException extends RuntimeException {
*/
@Deprecated
public final String code;
/**
* Use {@link #getMessage()} instead.
* @deprecated
*/
@Deprecated
public final String message;

private final String message;


public APIException(int httpStatusCode, String message, JSONObject jsonObj) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/chargebee/Environment.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class Environment {

public static final String API_VERSION = "v2";

public static final String LIBRARY_VERSION = "3.36.0";
public static final String LIBRARY_VERSION = "3.36.1";

private final String apiBaseUrl;

Expand Down