com.dynamicpdf.api.EndpointException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynamicpdf-api Show documentation
Show all versions of dynamicpdf-api Show documentation
A Java Client API that uses the DynamicPDF API to create, merge, split, form fill, stamp, secure/encrypt PDF documents.
package com.dynamicpdf.api;
/**
* Represents the exception that occurs in case of any issues with sending the request.
*/
public class EndpointException extends RuntimeException {
/**
* Initializes a new instance of the EndpointException
class.
* @param message Message of end point exception.
*/
public EndpointException(String message) {
super(message);
}
}