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