Class ActionActorException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ActionActorException
    extends java.lang.Exception
    The base Action Actor instance exception used for generic Action Actor exceptions.
    Author:
    Christopher Mindus
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      ConstructorDescription
      ActionActorException​(java.lang.String message)
      Creates a property exception with a message.
      ActionActorException​(java.lang.String message, java.lang.Throwable exception)
      Creates a property exception with a message and an exception 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

      • ActionActorException

        public ActionActorException​(java.lang.String message)
        Creates a property exception with a message.
        Parameters:
        message - the detail message.
      • ActionActorException

        public ActionActorException​(java.lang.String message,
                                    java.lang.Throwable exception)
        Creates a property exception with a message and an exception cause.
        Parameters:
        message - the detail message.
        exception - the exception, i.e. the real cause.