Package com.inet.pdfc.error
Class PresenterExceptionData
java.lang.Object
com.inet.pdfc.error.ExceptionData
com.inet.pdfc.error.PresenterExceptionData
- All Implemented Interfaces:
com.inet.error.HasErrorCode
A class to get the exceptions of a presenter. Since the presenters are executed after the actual
comparison, any internal error in the presenter may lead to a missing result but not to a failed
comparison task. If you want to make sure that all presenters were executed properly, you'll
have to
PDFComparer.getPresenterExceptions()
.-
Constructor Summary
ConstructorDescriptionPresenterExceptionData
(ExceptionData data, String presenterName, com.inet.pdfc.util.Pair<String> documents) Creates an instance for aThrowable
-
Method Summary
Modifier and TypeMethodDescriptionReturns the file name of the first comparison documentReturns the name of the presenter that has thrown an exception.Returns the file name of the second comparison documenttoString()
Methods inherited from class com.inet.pdfc.error.ExceptionData
equals, getErrorClass, getErrorCode, getMessage, getStack
-
Constructor Details
-
PresenterExceptionData
public PresenterExceptionData(ExceptionData data, String presenterName, com.inet.pdfc.util.Pair<String> documents) Creates an instance for aThrowable
- Parameters:
data
- exception datapresenterName
- the name for the presenter, that throw an exceptiondocuments
- the files for the first and second comparision documents- Since:
- 5.0
-
-
Method Details
-
getPresenterName
Returns the name of the presenter that has thrown an exception. This value is equal to the value returned byNamedExtension.getExtensionName()
.- Returns:
- the name of the presenter that has thrown an exception
- Since:
- 5.0
-
getFirstDocument
Returns the file name of the first comparison document- Returns:
- the file name of the first comparison document
- Since:
- 5.0
-
getSecondDocument
Returns the file name of the second comparison document- Returns:
- the file name of the second comparison document
- Since:
- 5.0
-
toString
- Overrides:
toString
in classExceptionData
-