tmf: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tracing.rcp.ui / src / org / eclipse / linuxtools / internal / tracing / rcp / ui / cli / TracingRCPCliException.java
CommitLineData
76fccfb0
MK
1/**********************************************************************
2 * Copyright (c) 2013 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
13package org.eclipse.linuxtools.internal.tracing.rcp.ui.cli;
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.048403 seconds and 5 git commands to generate.