java.lang.Object
java.lang.Throwable
java.lang.Exception
com.gpudb.GPUdbException
All Implemented Interfaces:
Direct Known Subclasses:
An exception that occurred during a GPUdb-related operation.
See Also:
Constructor Summary
ConstructorsConstructorDescriptionGPUdbException(String message) Creates a newGPUdbExceptionwith the specified message.GPUdbException(String message, boolean connectionFailure) Creates a newGPUdbExceptionwith the specified message and a boolean flag indicating if a connection failure caused this exception.GPUdbException(String message, Throwable cause) Creates a newGPUdbExceptionwith the specified message and cause.GPUdbException(String message, Throwable cause, boolean connectionFailure) Creates a newGPUdbExceptionwith the specified message, a cause, and a boolean flag indicating if a connection failure caused this exception.Method Summary
Modifier and TypeMethodDescriptionbooleanReturns if a connection failure caused this exception.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Constructor Details
GPUdbException
Creates a newGPUdbExceptionwith the specified message.Parameters:message- the messageGPUdbException
Creates a newGPUdbExceptionwith the specified message and cause.Parameters:message- the messagecause- the causeGPUdbException
Creates a newGPUdbExceptionwith the specified message, a cause, and a boolean flag indicating if a connection failure caused this exception.Parameters:message- the messagecause- the causeconnectionFailure- boolean flag indicating if there was a connection failure which caused this exceptionGPUdbException
Creates a newGPUdbExceptionwith the specified message and a boolean flag indicating if a connection failure caused this exception.Parameters:message- the messageconnectionFailure- boolean flag indicating if there was a connection failure which caused this exception