Package org.cytoscape.equations
Class FunctionError
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.cytoscape.equations.FunctionError
- All Implemented Interfaces:
Serializable
A class describing an error in a function.
- See Also:
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 -
Method Summary
Modifier and TypeMethodDescriptionintReturns 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 Details
-
FunctionError
Constructor.- Parameters:
message- The error message.argNumber- The argument number associated with the error.
-
-
Method Details
-
getArgNumber
public int getArgNumber()Returns the argument number the error is associated with.- Returns:
- the argument number the error is associated with.
-