analysis: basic checks for acyclic property of TmfGraph
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.graph.core / src / org / eclipse / tracecompass / analysis / graph / core / base / CycleDetectedException.java
CommitLineData
732e0744
FG
1/*******************************************************************************
2 * Copyright (c) 2015 École Polytechnique de Montréal
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
10package org.eclipse.tracecompass.analysis.graph.core.base;
11
12/**
13 * This exception indicates that a cycle was detected while traversing the graph.
14 *
15 * @author Francis Giraldeau
16 *
17 */
18public class CycleDetectedException extends RuntimeException {
19
20 /**
21 * Serial version
22 */
23 private static final long serialVersionUID = 8906101447850670255L;
24
25}
This page took 0.02615 seconds and 5 git commands to generate.