tmf: Rename packages to org.eclipse.tracecompass.*
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / project / model / TmfTraceImportException.java
1 /**********************************************************************
2 * Copyright (c) 2013, 2014 Ericsson
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
13 package org.eclipse.tracecompass.tmf.core.project.model;
14
15 /**
16 * Tmf trace import exception
17 *
18 * @author Matthew Khouzam
19 * @since 3.0
20 */
21 public 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.037028 seconds and 5 git commands to generate.