Internalize lttng.ui Activator
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.jni / src / org / eclipse / linuxtools / lttng / jni / exception / JniException.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 /**
16 * <b><u>JniException</u></b>
17 * <p>
18 * Super class for JNI exception.
19 */
20 public class JniException extends Exception {
21 private static final long serialVersionUID = -6620784221853154537L;
22
23 public JniException(String errMsg) {
24 super(errMsg);
25 }
26 }
27
This page took 0.029853 seconds and 5 git commands to generate.