Class BioException

    • Constructor Detail

      • BioException

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

        public BioException​(Throwable ex)
        Create a new BioException with a cause.
        Parameters:
        ex - the Throwable that caused this BioException
      • BioException

        public BioException​(Throwable ex,
                            String message)
        Deprecated.
        use new BioException(message, ex) instead
        Create a new BioException with a cause and a message.
        Parameters:
        ex - the Throwable that caused this BioException
        message - the message
      • BioException

        public BioException​(String message,
                            Throwable ex)
        Create a new BioException with a cause and a message.
        Parameters:
        message - the message
        ex - the Throwable that caused this BioException
      • BioException

        public BioException()
        Create a new BioException.