Class AgentTerminationException

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      AgentTerminationException()
      Default constructor.
      AgentTerminationException​(java.lang.String message)
      Create an exception with the given message.
      AgentTerminationException​(java.lang.String message, java.lang.Throwable cause)
      Create an exception with the given message and a cause.
      AgentTerminationException​(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      Create an exception with the given message and a cause.
      AgentTerminationException​(java.lang.Throwable cause)
      Create an exception with the given cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, 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

      • AgentTerminationException

        public AgentTerminationException()
        Default constructor.
      • AgentTerminationException

        public AgentTerminationException​(java.lang.String message)
        Create an exception with the given message.
        Parameters:
        message - to assign.
      • AgentTerminationException

        public AgentTerminationException​(java.lang.String message,
                                         java.lang.Throwable cause)
        Create an exception with the given message and a cause.
        Parameters:
        message - to assign.
        cause - of the error.
      • AgentTerminationException

        public AgentTerminationException​(java.lang.Throwable cause)
        Create an exception with the given cause.
        Parameters:
        cause - of the error.
      • AgentTerminationException

        public AgentTerminationException​(java.lang.String message,
                                         java.lang.Throwable cause,
                                         boolean enableSuppression,
                                         boolean writableStackTrace)
        Create an exception with the given message and a cause.
        Parameters:
        message - to assign.
        cause - of the error.
        enableSuppression - true to enable suppression.
        writableStackTrace - true to enable writing a full stack trace.