com.recurly.v3.RecurlyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
The official Java client for Recurly's V3 API.
package com.recurly.v3;
public class RecurlyException extends RuntimeException {
public RecurlyException(String message) {
super(message);
}
public RecurlyException(Throwable cause) {
super(cause);
}
}