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