Class EoulsanRuntimeException

  • All Implemented Interfaces:
    Serializable
    Direct Known Subclasses:
    EoulsanITRuntimeException

    public class EoulsanRuntimeException
    extends RuntimeException
    A nestable Eoulsan exception. This class came from from Java Code. In Eoulsan, checked exceptions are generally preferred to RuntimeExceptions, but RuntimeExceptions can be used as a fall-back if you are implementing an interface which doesn't support checked exceptions. If you do this, please document this clearly in the implementing class.
    Since:
    1.0
    Author:
    Laurent Jourdren
    See Also:
    Serialized Form
    • Constructor Detail

      • EoulsanRuntimeException

        public EoulsanRuntimeException()
        Create a new EoulsanRuntimeException.
      • EoulsanRuntimeException

        public EoulsanRuntimeException​(String message)
        Create a new EoulsanRuntimeException with a message.
        Parameters:
        message - the message
      • EoulsanRuntimeException

        public EoulsanRuntimeException​(String message,
                                       Throwable cause)
        Create a new EoulsanException with a message and a cause.
        Parameters:
        message - the message
        cause - the cause
      • EoulsanRuntimeException

        public EoulsanRuntimeException​(Throwable cause)
        Create a new EoulsanException with a cause.
        Parameters:
        cause - the cause