~ubuntu-branches/ubuntu/utopic/eclipse-linuxtools/utopic

« back to all changes in this revision

Viewing changes to lttng/org.eclipse.linuxtools.lttng.jni/src/org/eclipse/linuxtools/internal/lttng/jni/exception/JniMarkerFieldException.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2014-05-12 18:11:40 UTC
  • mfrom: (3.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140512181140-w237r3vsah1tmybz
Tags: 2.2.1-1
* New upstream release.
* Refreshed d/patches.
* Removed eclipse-cdt-valgrind-remote package, all its functionality
  is now provided by eclipse-cdt-profiling-framework-remote.
* Added remove-license-feature.patch.
* Bump Standards-Version to 3.9.5.
* Enable eclipse-changelog package.
* Enable eclipse-rpm-editor package.

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>JniMarkerFieldException</u></b>
16
 
 * <p>
17
 
 * Basic Exception class for the JniMarkerField class
18
 
 */
19
 
public class JniMarkerFieldException extends JniException {
20
 
    private static final long serialVersionUID = 6066381741374806879L;
21
 
 
22
 
    public JniMarkerFieldException(String errMsg) {
23
 
        super(errMsg);
24
 
    }
25
 
}