Module datarush.library
Class InvalidArgumentCountException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.pervasive.datarush.exceptions.DRException
com.pervasive.datarush.operators.group.InvalidArgumentCountException
- All Implemented Interfaces:
Serializable
Thrown to indicate that an aggregator was constructed with an invalid number of arguments.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidArgumentCountException(String function, int expected, int actual) Create an new exception -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidArgumentCountException
Create an new exception- Parameters:
function- the name of the aggregatorexpected- the expected number of argumentsactual- the actual number of arguments
-