1 16 17 package org.springframework.jdbc.support; 18 19 import org.springframework.dao.DataAccessException; 20 21 24 public class CustomErrorCodeException extends DataAccessException { 25 26 public CustomErrorCodeException(String msg) { 27 super(msg); 28 } 29 30 public CustomErrorCodeException(String msg, Throwable ex) { 31 super(msg, ex); 32 } 33 34 } 35 | Popular Tags |