Class UncategorizedScriptException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
org.springframework.jdbc.datasource.init.ScriptException
org.springframework.jdbc.datasource.init.UncategorizedScriptException
- All Implemented Interfaces:
- Serializable
Thrown when we cannot determine anything more specific than "something went
 wrong while processing an SQL script": for example, a 
SQLException
 from JDBC that we cannot pinpoint more precisely.- Since:
- 4.0.3
- Author:
- Sam Brannen
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionUncategorizedScriptException(String message) Create a newUncategorizedScriptException.UncategorizedScriptException(String message, Throwable cause) Create a newUncategorizedScriptException.
- 
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- 
UncategorizedScriptExceptionCreate a newUncategorizedScriptException.- Parameters:
- message- detailed message
 
- 
UncategorizedScriptExceptionCreate a newUncategorizedScriptException.- Parameters:
- message- detailed message
- cause- the root cause
 
 
-