1 package org.apache.turbine; 2 3 56 57 import org.apache.commons.lang.exception.NestableRuntimeException; 58 59 65 public class TurbineRuntimeException extends NestableRuntimeException 66 { 67 public TurbineRuntimeException() 68 { 69 } 70 71 public TurbineRuntimeException(String msg) 72 { 73 super(msg); 74 } 75 76 public TurbineRuntimeException(Throwable nested) 77 { 78 super(nested); 79 } 80 81 public TurbineRuntimeException(String msg, Throwable nested) 82 { 83 super(msg, nested); 84 } 85 } 86 | Popular Tags |