1 16 17 package org.springframework.orm.ojb; 18 19 import org.apache.ojb.broker.PersistenceBrokerException; 20 21 import org.springframework.dao.UncategorizedDataAccessException; 22 23 29 public class OjbOperationException extends UncategorizedDataAccessException { 30 31 public OjbOperationException(PersistenceBrokerException ex) { 32 super("OJB operation failed", ex); 33 } 34 35 } 36 | Popular Tags |