tmf: Use tabs in statistics view for each traces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.jni / src / org / eclipse / linuxtools / internal / lttng / jni / exception / JniTraceException.java
CommitLineData
ce38c104 1package org.eclipse.linuxtools.internal.lttng.jni.exception;
3b7509b0
WB
2/*******************************************************************************
3 * Copyright (c) 2009 Ericsson
4 *
5 * All rights reserved. This program and the accompanying materials are
6 * made available under the terms of the Eclipse Public License v1.0 which
7 * accompanies this distribution, and is available at
8 * http://www.eclipse.org/legal/epl-v10.html
9 *
10 * Contributors:
11 * William Bourque (wbourque@gmail.com) - Initial API and implementation
12 *******************************************************************************/
0152140d
ASL
13
14/**
15 * <b><u>JniTraceException</u></b>
16 * <p>
17 * Basic exception class for the JniTrace class
18 */
19public class JniTraceException extends JniException {
20 private static final long serialVersionUID = -6873007333085268143L;
21
22 public JniTraceException(String errMsg) {
23 super(errMsg);
24 }
25}
This page took 0.033859 seconds and 5 git commands to generate.