478d07953a4a453460b22af64b184c6d4b2ce31c
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.jni / src / org / eclipse / linuxtools / lttng / jni / exception / JniNoSuchEventException.java
1 package org.eclipse.linuxtools.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>JniNoSuchEventException</u></b>
16 * <p>
17 * Sub-exception type for the JniEventException type
18 * This exception type will get thrown when an event is unavailable
19 * This might happen at construction because some events type are not present in
20 * the trace
21 */
22 public class JniNoSuchEventException extends JniEventException {
23 private static final long serialVersionUID = -4379712949891538051L;
24
25 public JniNoSuchEventException(String errMsg) {
26 super(errMsg);
27 }
28 }
This page took 0.03009 seconds and 4 git commands to generate.