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