View Javadoc
1 /* 2 * DbParseException.java 3 * 4 * $Id: DbParseException.java,v 1.1 2003/08/14 07:26:50 baliuka Exp $ 5 */ 6 7 package net.sf.voruta; 8 9 /*** 10 * 11 * @author baliuka 12 */ 13 public class DbParseException extends DbException { 14 15 /*** 16 * Creates a new instance of <code>DbParseException</code> without detail message. 17 */ 18 public DbParseException() { 19 } 20 21 22 /*** 23 * Constructs an instance of <code>DbParseException</code> with the specified detail message. 24 * @param msg the detail message. 25 */ 26 public DbParseException(String msg) { 27 super(msg); 28 } 29 30 public DbParseException(String msg, Throwable cause) { 31 super(msg,cause); 32 } 33 34 public DbParseException( Throwable cause) { 35 super(cause); 36 } 37 38 }

This page was automatically generated by Maven