com.gocardless.errors.PermissionException 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.errors;
/**
* Exception thrown when user is not permitted to do desired action.
*/
public class PermissionException extends InvalidApiUsageException {
PermissionException(ApiErrorResponse error) {
super(error);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy