org.curjent.agent
Class ConfigLockedException

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

public class ConfigLockedException
extends AgentException

Agent's configuration is locked.

See Also:
Agent.getConfig(Object, Object, Object), Serialized Form

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

ConfigLockedException

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

See Also:
Throwable.Throwable()

ConfigLockedException

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

See Also:
Throwable.Throwable(String)

ConfigLockedException

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

See Also:
Throwable.Throwable(Throwable)

ConfigLockedException

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