001 package hep.aida.ref.sql; 002 003 /** <code>SQLTupleException</code> is a nested {@link Exception}. 004 * <p><font color="#880088"> 005 * <pre> 006 * $Log: SQLTupleException.java,v $ 007 * Revision 1.10 2007/05/23 16:38:44 hrivnac 008 * logical connections for Plotter; better UML 009 * 010 * Revision 1.9 2004/05/22 15:12:59 hrivnac 011 * class id reformated 012 * 013 * Revision 1.8 2004/04/14 13:54:41 hrivnac 014 * potential bugs fixed 015 * 016 * Revision 1.7 2004/04/14 13:39:47 hrivnac 017 * 1.5 warnings fixed 018 * 019 * Revision 1.6 2004/04/13 15:45:54 hrivnac 020 * AIDA URL introduced 021 * 022 * Revision 1.5 2003/11/20 17:36:08 hrivnac 023 * JavaDoc links fixed 024 * 025 * Revision 1.4 2003/11/20 17:21:58 hrivnac 026 * Java 1.5 natively supported, Log4J reporting improved. 027 * 028 * Revision 1.3 2003/11/05 19:46:22 hrivnac 029 * - FreeHEP 1.2.1 030 * - JAIDA 3.2.1 031 * 032 * </pre> 033 * </font></p> 034 * @opt attributes 035 * @opt operations 036 * @opt types 037 * @opt visibility 038 * @version $Id: SQLTupleException.java,v 1.10 2007/05/23 16:38:44 hrivnac Exp $ 039 * @author <a href="mailto:Julius.Hrivnac@cern.ch">J.Hrivnac</a> */ 040 public class SQLTupleException extends Exception { 041 042 public SQLTupleException() { 043 super(); 044 } 045 046 public SQLTupleException(String msg) { 047 super(msg); 048 } 049 050 public SQLTupleException(Throwable nested) { 051 super(nested); 052 } 053 054 public SQLTupleException(String msg, 055 Throwable nested) { 056 super(msg, nested); 057 } 058 059 }