tmf.core: Build a TmfAnalysisException from any type of Throwable.
authorLoïc Prieur-Drevon <loic.prieurdrevon@gmail.com>
Fri, 31 Mar 2017 19:07:26 +0000 (15:07 -0400)
committerMatthew Khouzam <matthew.khouzam@ericsson.com>
Wed, 5 Apr 2017 15:13:23 +0000 (11:13 -0400)
Change-Id: I6b92592ff5092b2941259dcf8958a20a79fd974c
Signed-off-by: Loïc Prieur-Drevon <loic.prieurdrevon@gmail.com>
Reviewed-on: https://git.eclipse.org/r/94242
Reviewed-by: Hudson CI
Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Tested-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Reviewed-by: Patrick Tasse <patrick.tasse@gmail.com>
tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/exceptions/TmfAnalysisException.java

index fc16b0b3b61934f8eebb21a812bd5eefc9ead232..3170db633ff1aec84ea1cfd6616a526a88669e9f 100644 (file)
@@ -43,4 +43,15 @@ public class TmfAnalysisException extends Exception {
         super(message);
     }
 
+    /**
+     * Constructs a new exception with the specified cause.
+     *
+     * @param cause
+     *            The cause
+     * @since 2.4
+     */
+    public TmfAnalysisException(Throwable cause) {
+        super(cause);
+    }
+
 }
This page took 0.024783 seconds and 5 git commands to generate.