KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > springframework > jdbc > SQLWarningException


1 /*
2  * Copyright 2002-2006 the original author or authors.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
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 JavaDoc;
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 UncategorizedDataAccessException {
36
37     /**
38      * Constructor for SQLWarningException.
39      * @param msg the detail message
40      * @param ex the JDBC warning
41      */

42     public SQLWarningException(String JavaDoc msg, SQLWarning JavaDoc ex) {
43         super(msg, ex);
44     }
45
46     /**
47      * Return the underlying SQLWarning.
48      */

49     public SQLWarning JavaDoc SQLWarning() {
50         return (SQLWarning JavaDoc) getCause();
51     }
52
53 }
54
Popular Tags