Package org.trustdeck.exception
Class UnexpectedResultSizeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.trustdeck.exception.UnexpectedResultSizeException
- All Implemented Interfaces:
Serializable
This class represents an exception when the expected and actually received result sizes differ.
- Author:
- Armin Müller
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUnexpectedResultSizeException(Integer expected, Integer actual) Constructor that also defines the expected and actual result sizes. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnexpectedResultSizeException
Constructor that also defines the expected and actual result sizes.- Parameters:
expected- the expected result sizeactual- the actual result size
-