48055d96aa77bd2078dac3db23edc0beb182b958
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core / src / org / eclipse / linuxtools / internal / ctf / core / event / metadata / exceptions / ParseException.java
1 /*******************************************************************************
2 * Copyright (c) 2011-2012 Ericsson, Ecole Polytechnique de Montreal and others
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors: Matthew Khouzam - Initial API and implementation
10 * Contributors: Simon Marchi - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.internal.ctf.core.event.metadata.exceptions;
14
15 /**
16 * <b><u>ParseException</u></b>
17 */
18 public class ParseException extends Exception {
19
20 private static final long serialVersionUID = 7901917601459652080L;
21
22 public ParseException() {
23 super();
24 }
25
26 /**
27 * Constructor
28 *
29 * @param message
30 */
31 public ParseException(String message) {
32 super(message);
33 }
34
35 }
This page took 0.03163 seconds and 5 git commands to generate.