Rename xxx.lttng to xxx.lttng.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.core / src / org / eclipse / linuxtools / lttng / exceptions / LttngException.java
CommitLineData
c392540b 1package org.eclipse.linuxtools.lttng.exceptions;
5d10d135
ASL
2
3/**
4 * <b><u>LttngException</u></b>
5 * <p>
6 * Super exception class for Lttng
7 */
8public 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.026593 seconds and 5 git commands to generate.