Class BioException

    • Constructor Summary

      Constructors 
      Constructor Description
      BioException()
      Create a new BioException.
      BioException​(java.lang.String message)
      Create a new BioException with a message.
      BioException​(java.lang.String message, java.lang.Throwable ex)
      Create a new BioException with a cause and a message.
      BioException​(java.lang.Throwable ex)
      Create a new BioException with a cause.
      BioException​(java.lang.Throwable ex, java.lang.String message)
      Deprecated.
      use new BioException(message, ex) instead
    • 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

      • BioException

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

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

        public BioException​(java.lang.Throwable ex,
                            java.lang.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​(java.lang.String message,
                            java.lang.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.