Class AozanRuntimeException

  • All Implemented Interfaces:
    Serializable

    public class AozanRuntimeException
    extends RuntimeException
    A nestable Aozan runtime 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:
    0.8
    Author:
    Laurent Jourdren, Matthew Pocock, Thomas Down
    See Also:
    Serialized Form
    • Constructor Detail

      • AozanRuntimeException

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

        public AozanRuntimeException​(Throwable cause)
        Create a new AozanRuntimeException with a cause.
        Parameters:
        cause - the cause
      • AozanRuntimeException

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

        public AozanRuntimeException()
        Create a new AozanRuntimeException.