org.curjent.agent
Class DeadlockException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.curjent.agent.AgentException
                  extended by org.curjent.agent.DeadlockException
All Implemented Interfaces:
Serializable

public class DeadlockException
extends AgentException

Two or more synchronous agent calls have deadlocked.

See the Deadlock section in the package description for org.curjent.agent.

See Also:
Serialized Form

Field Summary
private static long serialVersionUID
          Java Object serialization id.
 
Constructor Summary
DeadlockException()
          Exception with a null message and cause.
DeadlockException(String message)
          Exception with a given message and a null cause.
DeadlockException(String message, Throwable cause)
          Exception with a given message and cause.
DeadlockException(Throwable cause)
          Exception with a null message and a given cause.
 
Method Summary
 
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
 

Field Detail

serialVersionUID

private static final long serialVersionUID
Java Object serialization id.

See Also:
Constant Field Values
Constructor Detail

DeadlockException

public DeadlockException()
Exception with a null message and cause.

See Also:
Throwable.Throwable()

DeadlockException

public DeadlockException(String message)
Exception with a given message and a null cause. The given message may be empty or null.

See Also:
Throwable.Throwable(String)

DeadlockException

public DeadlockException(Throwable cause)
Exception with a null message and a given cause. The given cause may be null.

See Also:
Throwable.Throwable(Throwable)

DeadlockException

public DeadlockException(String message,
                         Throwable cause)
Exception with a given message and cause. The given message may be empty or null, and the given cause may be null.

See Also:
Throwable.Throwable(String, Throwable)


Copyright 2009-2011 Tom Landon
Apache License 2.0