com.gocardless.GoCardlessException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gocardless-pro Show documentation
Show all versions of gocardless-pro Show documentation
Client library for accessing the GoCardless Pro API
package com.gocardless;
/**
* Base class for client library exceptions.
*/
public abstract class GoCardlessException extends RuntimeException {
protected GoCardlessException() {
super();
}
protected GoCardlessException(String message) {
super(message);
}
protected GoCardlessException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy