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