Class R2dbcProxyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.r2dbc.spi.R2dbcException
io.r2dbc.proxy.core.R2dbcProxyException
- All Implemented Interfaces:
Serializable
Generic r2dbc-proxy exception.
- Author:
- Tadaya Tsuyukubo
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a newR2dbcProxyException
.R2dbcProxyException
(String reason) Create a newR2dbcProxyException
.R2dbcProxyException
(String reason, Throwable cause) Create a newR2dbcProxyException
. -
Method Summary
Methods inherited from class io.r2dbc.spi.R2dbcException
getErrorCode, getSql, getSqlState, toString
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
R2dbcProxyException
public R2dbcProxyException()Create a newR2dbcProxyException
. -
R2dbcProxyException
Create a newR2dbcProxyException
.- Parameters:
reason
- the reason for the error.
-
R2dbcProxyException
Create a newR2dbcProxyException
.- Parameters:
reason
- the reason for the error.cause
- the cause of the error.
-