1 25 package org.ofbiz.entity; 26 27 34 public class GenericEntityNotFoundException extends GenericEntityException { 35 36 public GenericEntityNotFoundException() { 37 super(); 38 } 39 40 public GenericEntityNotFoundException(String str) { 41 super(str); 42 } 43 44 public GenericEntityNotFoundException(String str, Throwable nested) { 45 super(str, nested); 46 } 47 } 48 | Popular Tags |