Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4e34aa1b14262aa0259eba6aa4294875c1543a0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * 
 */
package org.eclipse.linuxtools.internal.lttng.core.exceptions;

/**
 * @author francois
 *
 */
public class EventOutOfSequenceException extends Exception {

	private static final long serialVersionUID = -3537822357348706661L;

	public EventOutOfSequenceException(String errMsg) {
        super(errMsg);
    }
}

Back to the top