1 16 17 package org.springframework.jdbc; 18 19 import java.sql.SQLWarning ; 20 21 import org.springframework.dao.UncategorizedDataAccessException; 22 23 35 public class SQLWarningException extends UncategorizedDataAccessException { 36 37 42 public SQLWarningException(String msg, SQLWarning ex) { 43 super(msg, ex); 44 } 45 46 49 public SQLWarning SQLWarning() { 50 return (SQLWarning ) getCause(); 51 } 52 53 } 54 | Popular Tags |