ctf: Don't include all test traces in jar
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / exceptions / AttributeNotFoundException.java
index ef39d0843ea30847e3d8588b74aba6534893d562..2b1b0b4ddc0f8ec1163188d223890f000711a14d 100644 (file)
@@ -2,12 +2,12 @@
  * Copyright (c) 2012 Ericsson
  * Copyright (c) 2010, 2011 École Polytechnique de Montréal
  * Copyright (c) 2010, 2011 Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
- * 
+ *
  * 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
- * 
+ *
  *******************************************************************************/
 
 package org.eclipse.linuxtools.tmf.core.exceptions;
@@ -15,18 +15,26 @@ package org.eclipse.linuxtools.tmf.core.exceptions;
 /**
  * This exception gets thrown when the user tries to access an attribute which
  * doesn't exist in the system, of if the quark is simply invalid (ie, < 0).
- * 
- * @author alexmont
- * 
+ *
+ * @author Alexandre Montplaisir
  */
 public class AttributeNotFoundException extends Exception {
 
     private static final long serialVersionUID = 7964275803369706145L;
 
+    /**
+     * Default constructor
+     */
     public AttributeNotFoundException() {
         super();
     }
 
+    /**
+     * Constructor with a message
+     *
+     * @param message
+     *            Message to attach to this exception
+     */
     public AttributeNotFoundException(String message) {
         super(message);
     }
This page took 0.032399 seconds and 5 git commands to generate.