Bug #348267 - Documentation navigation arrows missing
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng / src / org / eclipse / linuxtools / lttng / LttngException.java
CommitLineData
5d10d135
ASL
1package org.eclipse.linuxtools.lttng;
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.026292 seconds and 5 git commands to generate.