vladimir 2003/05/29 23:21:45
Modified: java/src/org/apache/xindice/core/indexer
IndexerException.java
Log:
the argument was never used...
Revision Changes Path
1.4 +16 -15
xml-xindice/java/src/org/apache/xindice/core/indexer/IndexerException.java
Index: IndexerException.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/src/org/apache/xindice/core/indexer/IndexerException.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- IndexerException.java 31 Oct 2002 06:59:57 -0000 1.3
+++ IndexerException.java 30 May 2003 06:21:45 -0000 1.4
@@ -1,5 +1,3 @@
-package org.apache.xindice.core.indexer;
-
/*
* The Apache Software License, Version 1.1
*
@@ -59,8 +57,9 @@
* $Id$
*/
+package org.apache.xindice.core.indexer;
+
import org.apache.xindice.core.DBException;
-import org.apache.xindice.core.FaultCodes;
/**
* A IndexerException is thrown by an Indexer if an exception occurs
@@ -68,15 +67,17 @@
*/
public class IndexerException extends DBException {
- public IndexerException(int faultCode) {
- super(faultCode);
- }
-
- public IndexerException(int faultCode, String message) {
- super(faultCode, message);
- }
-
- public IndexerException(int faultCode, String message, Throwable cause) {
- super(FaultCodes.IDX_CANNOT_CREATE, message, cause);
- }
+
+ public IndexerException(int faultCode) {
+ super(faultCode);
+ }
+
+ public IndexerException(int faultCode, String message) {
+ super(faultCode, message);
+ }
+
+ public IndexerException(int faultCode, String message, Throwable cause) {
+ super(faultCode, message, cause);
+ }
+
}