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 / JniNoNextEventInTraceException.java
1 package org.eclipse.linuxtools.internal.lttng.jni.exception;
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 *******************************************************************************/
13
14 /**
15 * <b><u>JniNoNextEventInTraceException</u></b>
16 * <p>
17 * Sub-exception class type for JniTraceException
18 * This type will get thrown when we can't find any "next" event
19 * This should usually mean there is no more event in the trace
20
21 */
22 public class JniNoNextEventInTraceException extends JniTraceException {
23 private static final long serialVersionUID = -2887528566100063849L;
24
25 public JniNoNextEventInTraceException(String errMsg) {
26 super(errMsg);
27 }
28 }
This page took 0.036901 seconds and 5 git commands to generate.