]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Clean up disabled methods
authorPeter Bernard West <pbwest@apache.org>
Sun, 25 Jan 2004 02:17:22 +0000 (02:17 +0000)
committerPeter Bernard West <pbwest@apache.org>
Sun, 25 Jan 2004 02:17:22 +0000 (02:17 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197251 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/apps/FOPException.java

index f444fee0aa03a3da6b797ed00d81e4fa7d5b8474..64f94f9a1b6dd0f7c0fd67b95707b4622bf8b72a 100644 (file)
@@ -60,10 +60,6 @@ public class FOPException extends Exception {
     private static final String TAG = "$Name$";
     private static final String REVISION = "$Revision$";
 
-    //private static final String EXCEPTION_SEPARATOR = "\n---------\n";
-
-    //private Throwable exception;
-
     /**
      * create a new FOP Exception
      * @param message description
@@ -88,104 +84,4 @@ public class FOPException extends Exception {
         super(message, e);
     }
 
-    /**
-     * Sets this exception to the Throwable parameter
-     * @param t the exception
-     */
-    /*
-    protected void setException(Throwable t) {
-        exception = t;
-    }
-    */
-
-    /**
-     * Gets this exception.
-     * @return a Throwable
-     */
-    /*
-    public Throwable getException() {
-        return exception;
-    }
-    */
-
-    /**
-     * Gets the root exception of this exception.
-     * @return the Throwable root exception
-     */
-    /*
-    protected Throwable getRootException() {
-        Throwable result = exception;
-
-        if (result instanceof SAXException) {
-            result = ((SAXException)result).getException();
-        }
-        if (result instanceof java.lang.reflect.InvocationTargetException) {
-            result = ((java.lang.reflect.InvocationTargetException)result)
-                        .getTargetException();
-        }
-        if (result != exception) {
-            return result;
-        }
-        return null;
-    }
-    */
-
-
-    /**
-     * @see java.lang.Throwable#printStackTrace()
-     */
-    /*
-    public void printStackTrace() {
-        synchronized (System.err) {
-            super.printStackTrace();
-            if (exception != null) {
-                System.err.println(EXCEPTION_SEPARATOR);
-                exception.printStackTrace();
-            }
-            if (getRootException() != null) {
-                System.err.println(EXCEPTION_SEPARATOR);
-                getRootException().printStackTrace();
-            }
-        }
-    }
-    */
-
-    /**
-     * @see java.lang.Throwable#printStackTrace(java.io.PrintStream)
-     */
-    /*
-    public void printStackTrace(java.io.PrintStream stream) {
-        synchronized (stream) {
-            super.printStackTrace(stream);
-            if (exception != null) {
-                stream.println(EXCEPTION_SEPARATOR);
-                exception.printStackTrace(stream);
-            }
-            if (getRootException() != null) {
-                System.err.println(EXCEPTION_SEPARATOR);
-                getRootException().printStackTrace(stream);
-            }
-        }
-    }
-    */
-
-    /**
-     * @see java.lang.Throwable#printStackTrace(java.io.PrintWriter)
-     */
-    /*
-    public void printStackTrace(java.io.PrintWriter writer) {
-        synchronized (writer) {
-            super.printStackTrace(writer);
-            if (exception != null) {
-                writer.println(EXCEPTION_SEPARATOR);
-                exception.printStackTrace(writer);
-            }
-            if (getRootException() != null) {
-                System.err.println(EXCEPTION_SEPARATOR);
-                getRootException().printStackTrace(writer);
-            }
-        }
-    }
-    */
-
 }