ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / exceptions / TmfTraceException.java
index b22cb7400e3bde54afef571367a303fb69ca355c..90e5a8fc82ed7f8cc1f38600316cb68cb30dd2d6 100644 (file)
@@ -1,11 +1,11 @@
 /*******************************************************************************
  * Copyright (c) 2012 Ericsson
- * 
+ *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
+ *
  * Contributors:
  *   Francois Chouinard - Initial API and implementation
  *******************************************************************************/
@@ -14,6 +14,9 @@ package org.eclipse.linuxtools.tmf.core.exceptions;
 
 /**
  * TMF trace related exception
+ *
+ * @version 1.0
+ * @author Francois Chouinard
  */
 public class TmfTraceException extends Exception {
 
@@ -24,7 +27,7 @@ public class TmfTraceException extends Exception {
 
     /**
      * Constructor
-     * 
+     *
      * @param errMsg the error message
      */
     public TmfTraceException(String errMsg) {
@@ -32,10 +35,10 @@ public class TmfTraceException extends Exception {
     }
 
     /**
-     * Constructor 
-     * 
+     * Constructor
+     *
      * @param errMsg the error message
-     * @param cause the error cause (<code>null</code> is permitted which means no cause is available) 
+     * @param cause the error cause (<code>null</code> is permitted which means no cause is available)
      */
     public TmfTraceException(String errMsg, Throwable cause) {
         super(errMsg, cause);
This page took 0.029011 seconds and 5 git commands to generate.