eRqlEngine API documentation - http://www.wleklinski.de/rdf/

eworks.RQL.engine
Class VariableAlreadyBoundException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byeworks.RQL.engine.VariableAlreadyBoundException
All Implemented Interfaces:
Serializable

public class VariableAlreadyBoundException
extends Exception

Indicates that a variable is already bound and is tried to be bound a second time, which is not allowed.

Version:
1.00 (2003-11-03)
Author:
Fabian Wleklinski (fabian@wleklinski.de)
See Also:
Serialized Form

Constructor Summary
VariableAlreadyBoundException(String message)
          Creates a new instance with the given description.
VariableAlreadyBoundException(String message, Throwable cause)
          Creates a new instance and encapsulated the given exception and message as the exception's cause and description.
VariableAlreadyBoundException(Throwable cause)
          Creates a new instance and encapsulated the given exception as the exception's cause.
VariableAlreadyBoundException(Variable variable)
          Creates a new instance and encapsulates the given variable.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

VariableAlreadyBoundException

public VariableAlreadyBoundException(Variable variable)
Creates a new instance and encapsulates the given variable.

Parameters:
variable - The variable that is already bound.

VariableAlreadyBoundException

public VariableAlreadyBoundException(String message)
Creates a new instance with the given description.

Parameters:
message - The exception's description.

VariableAlreadyBoundException

public VariableAlreadyBoundException(Throwable cause)
Creates a new instance and encapsulated the given exception as the exception's cause.

Parameters:
cause - The exception which has caused the exception.

VariableAlreadyBoundException

public VariableAlreadyBoundException(String message,
                                     Throwable cause)
Creates a new instance and encapsulated the given exception and message as the exception's cause and description.

Parameters:
message - The exception's description.
cause - The exception which has caused the exception.

eRqlEngine API documentation - http://www.wleklinski.de/rdf/