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