当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
SQLWarningException (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.jdbc
Class SQLWarningException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
org.springframework.dao.UncategorizedDataAccessException
org.springframework.jdbc.SQLWarningException
- All Implemented Interfaces:
- Serializable
public class SQLWarningException
- extends UncategorizedDataAccessException
Exception thrown when we're not ignoring SQLWarnings
.
If a SQLWarning is reported, the operation completed, so we will need
to explicitly roll it back if we're not happy when looking at the warning.
We might choose to ignore (and log) the warning, or to wrap and throw it
in the shape of this SQLWarningException instead.
- Author:
- Rod Johnson, Juergen Hoeller
- See Also:
JdbcTemplate.setIgnoreWarnings(boolean)
,
Serialized Form
SQLWarningException
public SQLWarningException(String msg,
SQLWarning ex)
- Constructor for SQLWarningException.
- Parameters:
msg
- the detail messageex
- the JDBC warning
SQLWarning
public SQLWarning SQLWarning()
- Return the underlying SQLWarning.
Copyright © 2002-2007 The Spring Framework.