com.ironsoftware.ironpdf.exception.IronPdfInputException Maven / Gradle / Ivy
package com.ironsoftware.ironpdf.exception;
import com.ironsoftware.ironpdf.internal.staticapi.Exception_RemoteException;
public final class IronPdfInputException extends Exception_RemoteException {
public IronPdfInputException(String message, String stackTrace, String exceptionType) {
super(message, stackTrace, exceptionType);
}
public IronPdfInputException(Exception_RemoteException ex) {
super(ex.getMessage(), ex.stackTraceString, ex.getExceptionType());
}
}