org.curjent.agent
Class CallSiteNotFoundException

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.CallSiteNotFoundException
All Implemented Interfaces:
Serializable

public class CallSiteNotFoundException
extends AgentException

Lookup for an agent's call site failed.

See Also:
AgentConfig.getCallSite(String, Class, Class...), Serialized Form

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

CallSiteNotFoundException

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

See Also:
Throwable.Throwable()

CallSiteNotFoundException

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

See Also:
Throwable.Throwable(String)

CallSiteNotFoundException

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

See Also:
Throwable.Throwable(Throwable)

CallSiteNotFoundException

public CallSiteNotFoundException(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