public class MapperException extends DriverException
Most configuration issues (e.g. misuse of the annotations) can be detected at compile-time, and will be reported as compiler errors instead. This exception is reserved for things that can only be checked at runtime, for example session state (protocol version, schema, etc).
DriverException.getExecutionInfo()
always returns null
for this type.
Constructor and Description |
---|
MapperException(String message) |
MapperException(String message,
Throwable cause) |
Modifier and Type | Method and Description |
---|---|
DriverException |
copy()
Copy the exception.
|
getExecutionInfo, setExecutionInfo
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public MapperException(@NonNull String message)
@NonNull public DriverException copy()
DriverException
This returns a new exception, equivalent to the original one, except that because a new object is created in the current thread, the top-most element in the stacktrace of the exception will refer to the current thread. The original exception may or may not be included as the copy's cause, depending on whether that is deemed useful (this is left to the discretion of each implementation).
This is intended for the synchronous wrapper methods of the driver, in order to produce a more user-friendly stack trace (that includes the line in the user code where the driver rethrew the error).
copy
in class DriverException
Copyright © 2017–2022. All rights reserved.