statesystem: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.rcp.ui / src / org / eclipse / tracecompass / internal / tracing / rcp / ui / cli / TracingRCPCliException.java
CommitLineData
76fccfb0 1/**********************************************************************
ed902a2b 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
9d26aebf 13package org.eclipse.tracecompass.internal.tracing.rcp.ui.cli;
76fccfb0
MK
14
15/**
16 * Command line exceptions.
17 *
18 * @author Matthew Khouzam
19 */
20public class TracingRCPCliException extends Exception {
21
22 /**
23 * Serial UID
24 */
25 private static final long serialVersionUID = -844846299720475123L;
26
27 /**
28 * Constructs a new exception with the specified detail message. The cause
29 * is not initialized, and may subsequently be initialized by a call to
30 * {@link #initCause}.
31 *
32 * @param message
33 * the detail message. The detail message is saved for later
34 * retrieval by the {@link #getMessage()} method.
35 */
36 public TracingRCPCliException(String message) {
37 super(message);
38 }
39
40}
This page took 0.059508 seconds and 5 git commands to generate.