tmf.core: Make getParamater synchronized
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.graph.core / src / org / eclipse / tracecompass / analysis / graph / core / criticalpath / CriticalPathAlgorithmException.java
CommitLineData
da4232b4
MK
1/*******************************************************************************
2 * Copyright (c) 2015 École Polytechnique de Montréal
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made 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 *******************************************************************************/
9package org.eclipse.tracecompass.analysis.graph.core.criticalpath;
10
11/**
12 * Critical Path Algorithm Exception
13 * @author Matthew Khouzam
14 */
15public class CriticalPathAlgorithmException extends Exception {
16 /**
17 * Serial ID for serialization
18 */
19 private static final long serialVersionUID = -919020777158527567L;
20
21 /**
22 * Constructor
23 * @param message message
24 */
25 public CriticalPathAlgorithmException(String message){
26 super(message);
27 }
28}
This page took 0.036334 seconds and 5 git commands to generate.