1 package org.apache.torque; 2 3 21 22 import org.apache.commons.lang.exception.NestableException; 23 24 31 public class TorqueException extends NestableException 32 { 33 36 private static final long serialVersionUID = 3090544800848674368L; 37 38 42 public TorqueException() 43 { 44 } 45 46 52 public TorqueException(String msg) 53 { 54 super(msg); 55 } 56 57 64 public TorqueException(Throwable nested) 65 { 66 super(nested); 67 } 68 69 77 public TorqueException(String msg, Throwable nested) 78 { 79 super(msg, nested); 80 } 81 } 82 | Popular Tags |