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