1 package org.apache.turbine.services; 2 3 18 19 import org.apache.turbine.util.TurbineRuntimeException; 20 21 33 public class InstantiationException extends TurbineRuntimeException 34 { 35 41 public InstantiationException(String msg) 42 { 43 super(msg); 44 } 45 46 54 public InstantiationException(String msg, Throwable t) 55 { 56 super(msg, t); 57 } 58 } 59 | Popular Tags |