1 16 17 package org.springframework.transaction; 18 19 26 public class NestedTransactionNotSupportedException extends CannotCreateTransactionException { 27 28 32 public NestedTransactionNotSupportedException(String msg) { 33 super(msg); 34 } 35 36 41 public NestedTransactionNotSupportedException(String msg, Throwable cause) { 42 super(msg, cause); 43 } 44 45 } 46 | Popular Tags |