Class ScriptException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
org.springframework.r2dbc.connection.init.ScriptException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- CannotReadScriptException,- ScriptParseException,- ScriptStatementFailedException,- UncategorizedScriptException
Root of the hierarchy of data access exceptions that are related to processing
 of SQL scripts.
- Since:
- 5.3
- Author:
- Sam Brannen, Mark Paluch
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionScriptException(String message) Create a newScriptException.ScriptException(String message, Throwable cause) Create a newScriptException.
- 
Method SummaryMethods inherited from class org.springframework.core.NestedRuntimeExceptioncontains, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ScriptExceptionCreate a newScriptException.- Parameters:
- message- the detail message
 
- 
ScriptExceptionCreate a newScriptException.- Parameters:
- message- the detail message
- cause- the root cause
 
 
-