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