1 package org.apache.torque.engine; 2 3 18 19 import org.apache.commons.lang.exception.NestableException; 20 21 28 public class EngineException extends NestableException 29 { 30 31 35 public EngineException() 36 { 37 } 38 39 45 public EngineException(String msg) 46 { 47 super(msg); 48 } 49 50 57 public EngineException(Throwable nested) 58 { 59 super(nested); 60 } 61 62 70 public EngineException(String msg, Throwable nested) 71 { 72 super(msg, nested); 73 } 74 } 75 | Popular Tags |