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
public class InvalidArgumentCountException extends DRException
Thrown to indicate that an aggregator was constructed with an invalid number of arguments.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidArgumentCountException(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 Detail
-
InvalidArgumentCountException
public InvalidArgumentCountException(String function, int expected, int actual)
Create an new exception- Parameters:
function
- the name of the aggregatorexpected
- the expected number of argumentsactual
- the actual number of arguments
-
-