Rename xxx.lttng to xxx.lttng.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.core / src / org / eclipse / linuxtools / lttng / exceptions / LttngException.java
1 package org.eclipse.linuxtools.lttng.exceptions;
2
3 /**
4 * <b><u>LttngException</u></b>
5 * <p>
6 * Super exception class for Lttng
7 */
8 public class LttngException extends Exception {
9 static final long serialVersionUID = 4016530589556719360L;
10
11 public LttngException(String errMsg) {
12 super(errMsg);
13 }
14 }
This page took 0.030527 seconds and 5 git commands to generate.