Package org.cytoscape.equations
Class FunctionError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.cytoscape.equations.FunctionError
-
- All Implemented Interfaces:
Serializable
public final class FunctionError extends Exception
A class describing an error in a function.- See Also:
- Serialized Form
Module:
equations-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>equations-api</artifactId> </dependency>
-
-
Constructor Summary
Constructors Constructor Description FunctionError(String message, int argNumber)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getArgNumber()
Returns the argument number the error is associated with.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
FunctionError
public FunctionError(String message, int argNumber)
Constructor.- Parameters:
message
- The error message.argNumber
- The argument number associated with the error.
-
-