1 package org.apache.turbine.util; 2 3 18 19 import org.apache.commons.lang.exception.NestableException; 20 21 85 public class TurbineException extends NestableException 86 { 87 91 public TurbineException() 92 { 93 } 94 95 101 public TurbineException(String msg) 102 { 103 super(msg); 104 } 105 106 113 public TurbineException(Throwable nested) 114 { 115 super(nested); 116 } 117 118 126 public TurbineException(String msg, Throwable nested) 127 { 128 super(msg, nested); 129 } 130 } 131 | Popular Tags |