com.ironsoftware.ironpdf.exception.IronPdfLicensingException Maven / Gradle / Ivy
package com.ironsoftware.ironpdf.exception;
import com.ironsoftware.ironpdf.internal.staticapi.Exception_RemoteException;
/**
* Get a free development license at https://ironpdf.com/licensing/#trial-license or purchase a deployment license from
* https://ironpdf.com/licensing/.
*/
public final class IronPdfLicensingException extends IronPdfProductException {
/**
* Instantiates a new Iron pdf licensing exception.
*
* @param message the message
* @param stackTrace the stack trace
* @param exceptionType the exception type
*/
public IronPdfLicensingException(String message, String stackTrace, String exceptionType) {
super(message, stackTrace, exceptionType);
}
/**
* Instantiates a new Iron pdf licensing exception.
*
* @param ex the ex
*/
public IronPdfLicensingException(Exception_RemoteException ex) {
super(ex.getMessage(), ex.stackTraceString, ex.getExceptionType());
}
/**
* Gets target site.
*
* @return the target site
*/
String getTargetSite() {
return this.getMessage();
}
}