public class ReadTimeoutException extends QueryTimeoutException
| Constructor and Description |
|---|
ReadTimeoutException(ConsistencyLevel consistency,
int received,
int required,
boolean dataPresent)
This constructor should only be used internally by the driver
when decoding error responses.
|
ReadTimeoutException(InetSocketAddress address,
ConsistencyLevel consistency,
int received,
int required,
boolean dataPresent) |
| Modifier and Type | Method and Description |
|---|---|
DriverException |
copy()
Copy the exception.
|
ReadTimeoutException |
copy(InetSocketAddress address)
Create a copy of this exception with a nicer stack trace, and including the coordinator
address that caused this exception to be raised.
|
boolean |
wasDataRetrieved()
Whether the actual data was amongst the received replica responses.
|
getAddress, getConsistencyLevel, getHost, getReceivedAcknowledgements, getRequiredAcknowledgementsaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ReadTimeoutException(ConsistencyLevel consistency, int received, int required, boolean dataPresent)
public ReadTimeoutException(InetSocketAddress address, ConsistencyLevel consistency, int received, int required, boolean dataPresent)
public boolean wasDataRetrieved()
true if the data was amongst the received replica
responses, false otherwise.public DriverException copy()
DriverExceptioncopy in class DriverExceptionpublic ReadTimeoutException copy(InetSocketAddress address)
address - The full address of the host that caused this exception to be thrown.