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

« back to all changes in this revision

Viewing changes to lttng/org.eclipse.linuxtools.lttng.jni/src/org/eclipse/linuxtools/internal/lttng/jni/exception/JniTracefileWithoutEventException.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
package org.eclipse.linuxtools.internal.lttng.jni.exception;
 
2
/*******************************************************************************
 
3
 * Copyright (c) 2009 Ericsson
 
4
 * 
 
5
 * All rights reserved. This program and the accompanying materials are
 
6
 * made available under the terms of the Eclipse Public License v1.0 which
 
7
 * accompanies this distribution, and is available at
 
8
 * http://www.eclipse.org/legal/epl-v10.html
 
9
 * 
 
10
 * Contributors:
 
11
 *   William Bourque (wbourque@gmail.com) - Initial API and implementation
 
12
 *******************************************************************************/
 
13
 
 
14
/**
 
15
 * <b><u>JniTracefileWithoutEventException</u></b>
 
16
 * <p>
 
17
 * Sub-exception class type for JniTracefileException
 
18
 * This type will get thrown when a trace file contain no readable events
 
19
 * The proper course of action would usually be to ignore this useless trace file
 
20
 */
 
21
public class JniTracefileWithoutEventException extends JniTracefileException {
 
22
    private static final long serialVersionUID = -8183967479236071261L;
 
23
 
 
24
    public JniTracefileWithoutEventException(String errMsg) {
 
25
        super(errMsg);
 
26
    }
 
27
}