public class BioException
extends java.lang.Exception
Constructor and 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
|
public BioException(java.lang.String message)
message
- the messagepublic BioException(java.lang.Throwable ex)
ex
- the Throwable that caused this BioExceptionpublic BioException(java.lang.Throwable ex, java.lang.String message)
ex
- the Throwable that caused this BioExceptionmessage
- the messagepublic BioException(java.lang.String message, java.lang.Throwable ex)
message
- the messageex
- the Throwable that caused this BioExceptionpublic BioException()