1 25 package org.ofbiz.entityext.eca; 26 27 import org.ofbiz.entity.GenericEntityException; 28 29 36 public class EntityEcaException extends GenericEntityException { 37 38 public EntityEcaException() { 39 super(); 40 } 41 42 public EntityEcaException(String str) { 43 super(str); 44 } 45 46 public EntityEcaException(String str, Throwable nested) { 47 super(str, nested); 48 } 49 } 50 | Popular Tags |