ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / project / model / TmfTraceImportException.java
CommitLineData
76fccfb0 1/**********************************************************************
60ae41e1 2 * Copyright (c) 2013, 2014 Ericsson
76fccfb0
MK
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Matthew Khouzam - Initial API and implementation
11 **********************************************************************/
12
47aafe74 13package org.eclipse.linuxtools.tmf.core.project.model;
76fccfb0
MK
14
15/**
16 * Tmf trace import exception
17 *
18 * @author Matthew Khouzam
47aafe74 19 * @since 3.0
76fccfb0
MK
20 */
21public class TmfTraceImportException extends Exception {
22
23 private static final long serialVersionUID = -6902068313782751330L;
24
25 /**
26 * Constructs a new TmfTraceImportException with <code>null</code> as its
27 * detail message. The cause is not initialized, and may subsequently be
28 * initialized by a call to {@link #initCause}.
29 */
30 public TmfTraceImportException() {
31 }
32
33 /**
34 * Constructs a new exception with the specified detail message. The cause
35 * is not initialized, and may subsequently be initialized by a call to
36 * {@link #initCause}.
37 *
38 * @param message
39 * the detail message. The detail message is saved for later
40 * retrieval by the {@link #getMessage()} method.
41 */
42 public TmfTraceImportException(String message) {
43 super(message);
44 }
45}
This page took 0.051186 seconds and 5 git commands to generate.