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:

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 Details

    • FunctionError

      public FunctionError(String message, int argNumber)
      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.