View Javadoc
1 /* 2 * Created on 2003-6-16 12:04:56 by joel guo 3 * 4 * vTradEx Information Technology Inc. 5 */ 6 package com.cyclops.dbdigger; 7 import org.apache.commons.lang.exception.NestableException; 8 /*** Add description <font color="red">HERE</font>! 9 * 10 * @author <a href="mailto:joeblack.guo@vtradex.com">joel guo</a> 11 * @since 2003-6-16 12:04:56 12 */ 13 public class DBDiggerException extends NestableException { 14 /*** Constructor method for class DBDiggerException 15 */ 16 public DBDiggerException() { 17 super(); 18 } 19 /*** Constructor method for class DBDiggerException 20 * @param arg0 A message 21 */ 22 public DBDiggerException(String arg0) { 23 super(arg0); 24 } 25 /*** Constructor method for class DBDiggerException 26 * @param arg0 A nested Throwable 27 */ 28 public DBDiggerException(Throwable arg0) { 29 super(arg0); 30 } 31 /*** Constructor method for class DBDiggerException 32 * @param arg0 Message 33 * @param arg1 Nested Throwable 34 */ 35 public DBDiggerException(String arg0, Throwable arg1) { 36 super(arg0, arg1); 37 } 38 }

This page was automatically generated by Maven