1 package org.apache.turbine.util; 2 3 18 19 import org.apache.commons.lang.exception.NestableRuntimeException; 20 21 33 public class TurbineRuntimeException extends NestableRuntimeException 34 { 35 39 public TurbineRuntimeException() 40 { 41 } 42 43 49 public TurbineRuntimeException(String msg) 50 { 51 super(msg); 52 } 53 54 61 public TurbineRuntimeException(Throwable nested) 62 { 63 super(nested); 64 } 65 66 74 public TurbineRuntimeException(String msg, Throwable nested) 75 { 76 super(msg, nested); 77 } 78 79 } 80 | Popular Tags |