1 18 package org.ofbiz.entity.transaction; 19 20 import org.ofbiz.entity.GenericEntityException; 21 22 29 public class GenericTransactionException extends GenericEntityException { 30 31 public GenericTransactionException() { 32 super(); 33 } 34 35 public GenericTransactionException(String str) { 36 super(str); 37 } 38 39 public GenericTransactionException(String str, Throwable nested) { 40 super(str, nested); 41 } 42 } 43 | Popular Tags |