1 16 17 package org.springframework.dao; 18 19 import org.springframework.core.NestedRuntimeException; 20 21 38 public abstract class DataAccessException extends NestedRuntimeException { 39 40 44 public DataAccessException(String msg) { 45 super(msg); 46 } 47 48 54 public DataAccessException(String msg, Throwable cause) { 55 super(msg, cause); 56 } 57 58 } 59 | Popular Tags |