1 16 17 package org.springframework.transaction; 18 19 import org.springframework.core.NestedRuntimeException; 20 21 27 public abstract class TransactionException extends NestedRuntimeException { 28 29 33 public TransactionException(String msg) { 34 super(msg); 35 } 36 37 42 public TransactionException(String msg, Throwable cause) { 43 super(msg, cause); 44 } 45 46 } 47 | Popular Tags |