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