cz.cuni.amis.pogamut.base.agent.exceptions
Class AgentException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by cz.cuni.amis.utils.exception.PogamutException
                  extended by cz.cuni.amis.pogamut.base.component.exception.ComponentException
                      extended by cz.cuni.amis.pogamut.base.agent.exceptions.AgentException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
AgentOperationNotSupportedException, BotAlreadyStartedException, CantStartJMXException

public class AgentException
extends ComponentException

Used by Gavial agents.

See Also:
Serialized Form

Constructor Summary
AgentException(java.lang.String message, java.util.logging.Logger log, java.lang.Object origin)
          Constructs a new exception with the specified detail message.
AgentException(java.lang.String message, java.lang.Object origin)
          Constructs a new exception with the specified detail message.
AgentException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new exception with the specified detail message.
AgentException(java.lang.String message, java.lang.Throwable cause, java.util.logging.Logger log, java.lang.Object origin)
          Constructs a new exception with the specified detail message and cause.
AgentException(java.lang.String message, java.lang.Throwable cause, java.lang.Object origin)
          Constructs a new exception with the specified detail message and cause.
 
Method Summary
 
Methods inherited from class cz.cuni.amis.utils.exception.PogamutException
getOrigin, isLogged, logException, logExceptionOnce, setLogged, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AgentException

public AgentException(java.lang.String message,
                      java.lang.Throwable cause)
Constructs a new exception with the specified detail message.

Not logging anything anywhere on its own.

Parameters:
message -
cause -

AgentException

public AgentException(java.lang.String message,
                      java.lang.Object origin)
Constructs a new exception with the specified detail message.

Not logging anything anywhere on its own.

Parameters:
message -
origin - which object does produced the exception

AgentException

public AgentException(java.lang.String message,
                      java.lang.Throwable cause,
                      java.lang.Object origin)
Constructs a new exception with the specified detail message and cause.

Not logging anything anywhere on its own.

Parameters:
message -
cause -
origin - which object does produced the exception

AgentException

public AgentException(java.lang.String message,
                      java.util.logging.Logger log,
                      java.lang.Object origin)
Constructs a new exception with the specified detail message.

Logs the exception via specified Logger.

Parameters:
message -
log -
origin - which object does produced the exception

AgentException

public AgentException(java.lang.String message,
                      java.lang.Throwable cause,
                      java.util.logging.Logger log,
                      java.lang.Object origin)
Constructs a new exception with the specified detail message and cause.

Logs the exception via specified Logger.

Parameters:
message -
cause -
origin - which object does produced the exception