~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to lttng/org.eclipse.linuxtools.lttng.core/src/org/eclipse/linuxtools/internal/lttng/core/exceptions/EventOutOfSequenceException.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2012-06-29 12:07:30 UTC
  • Revision ID: package-import@ubuntu.com-20120629120730-bfri1xys1i71dpn6
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * 
 
3
 */
 
4
package org.eclipse.linuxtools.internal.lttng.core.exceptions;
 
5
 
 
6
/**
 
7
 * @author francois
 
8
 *
 
9
 */
 
10
public class EventOutOfSequenceException extends Exception {
 
11
 
 
12
        private static final long serialVersionUID = -3537822357348706661L;
 
13
 
 
14
        public EventOutOfSequenceException(String errMsg) {
 
15
        super(errMsg);
 
16
    }
 
17
}