~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to lttng/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/exceptions/AttributeNotFoundException.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-05-13 21:43:22 UTC
  • mfrom: (1.2.1) (2.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130513214322-6frgd9du1n0w2uo7
Tags: 1.2.1-1
* Team upload.
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Copyright (c) 2012 Ericsson
3
3
 * Copyright (c) 2010, 2011 École Polytechnique de Montréal
4
4
 * Copyright (c) 2010, 2011 Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
5
 
 * 
 
5
 *
6
6
 * All rights reserved. This program and the accompanying materials are
7
7
 * made available under the terms of the Eclipse Public License v1.0 which
8
8
 * accompanies this distribution, and is available at
9
9
 * http://www.eclipse.org/legal/epl-v10.html
10
 
 * 
 
10
 *
11
11
 *******************************************************************************/
12
12
 
13
13
package org.eclipse.linuxtools.tmf.core.exceptions;
15
15
/**
16
16
 * This exception gets thrown when the user tries to access an attribute which
17
17
 * doesn't exist in the system, of if the quark is simply invalid (ie, < 0).
18
 
 * 
19
 
 * @author alexmont
20
 
 * 
 
18
 *
 
19
 * @author Alexandre Montplaisir
21
20
 */
22
21
public class AttributeNotFoundException extends Exception {
23
22
 
24
23
    private static final long serialVersionUID = 7964275803369706145L;
25
24
 
 
25
    /**
 
26
     * Default constructor
 
27
     */
26
28
    public AttributeNotFoundException() {
27
29
        super();
28
30
    }
29
31
 
 
32
    /**
 
33
     * Constructor with a message
 
34
     *
 
35
     * @param message
 
36
     *            Message to attach to this exception
 
37
     */
30
38
    public AttributeNotFoundException(String message) {
31
39
        super(message);
32
40
    }