01: /*
02: * Copyright 2002-2006 the original author or authors.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.springframework.jdbc;
18:
19: import java.sql.SQLWarning;
20:
21: import org.springframework.dao.UncategorizedDataAccessException;
22:
23: /**
24: * Exception thrown when we're not ignoring {@link java.sql.SQLWarning SQLWarnings}.
25: *
26: * <p>If a SQLWarning is reported, the operation completed, so we will need
27: * to explicitly roll it back if we're not happy when looking at the warning.
28: * We might choose to ignore (and log) the warning, or to wrap and throw it
29: * in the shape of this SQLWarningException instead.
30: *
31: * @author Rod Johnson
32: * @author Juergen Hoeller
33: * @see org.springframework.jdbc.core.JdbcTemplate#setIgnoreWarnings
34: */
35: public class SQLWarningException extends
36: UncategorizedDataAccessException {
37:
38: /**
39: * Constructor for SQLWarningException.
40: * @param msg the detail message
41: * @param ex the JDBC warning
42: */
43: public SQLWarningException(String msg, SQLWarning ex) {
44: super (msg, ex);
45: }
46:
47: /**
48: * Return the underlying SQLWarning.
49: */
50: public SQLWarning SQLWarning() {
51: return (SQLWarning) getCause();
52: }
53:
54: }
|