public interface ExceptionHandler
| Modifier and Type | Method and Description |
|---|---|
boolean |
isLoginException(java.lang.String sqlState) |
boolean |
isLoginException(java.lang.Throwable throwable)
Deprecated.
Use similar method below that accepts throwable and target driver dialect.
|
boolean |
isLoginException(java.lang.Throwable throwable,
@Nullable TargetDriverDialect targetDriverDialect) |
boolean |
isNetworkException(java.lang.String sqlState) |
boolean |
isNetworkException(java.lang.Throwable throwable)
Deprecated.
Use similar method below that accepts throwable and target driver dialect.
|
boolean |
isNetworkException(java.lang.Throwable throwable,
@Nullable TargetDriverDialect targetDriverDialect) |
@Deprecated boolean isNetworkException(java.lang.Throwable throwable)
throwable - A throwable object to check.boolean isNetworkException(java.lang.Throwable throwable,
@Nullable TargetDriverDialect targetDriverDialect)
boolean isNetworkException(java.lang.String sqlState)
boolean isLoginException(java.lang.String sqlState)
@Deprecated boolean isLoginException(java.lang.Throwable throwable)
throwable - A throwable object to check.boolean isLoginException(java.lang.Throwable throwable,
@Nullable TargetDriverDialect targetDriverDialect)