1 22 23 package org.xquark.extractor.common; 24 25 public class SqlWrapperException extends ChainedException { 26 27 private static final String RCSRevision = "$Revision: 1.2 $"; 28 private static final String RCSName = "$Name: $"; 29 30 31 36 public SqlWrapperException (String message) 37 { 38 super(message); 39 } 40 41 public SqlWrapperException(String message , Throwable cause ) { 42 super (message, cause); 43 } 44 } 45 | Popular Tags |