1 16 17 package org.springframework.jdbc.support; 18 19 import org.springframework.core.NestedCheckedException; 20 21 31 public class MetaDataAccessException extends NestedCheckedException { 32 33 37 public MetaDataAccessException(String msg) { 38 super(msg); 39 } 40 41 46 public MetaDataAccessException(String msg, Throwable cause) { 47 super(msg, cause); 48 } 49 50 } 51 | Popular Tags |