tmf: Add a StateSystemDisposedException
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / exceptions / StateSystemDisposedException.java
CommitLineData
96345c5a
AM
1/*******************************************************************************
2 * Copyright (c) 2012 Ericsson
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 *
9 * Contributors:
10 * Alexandre Montplaisir - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.core.exceptions;
14
15/**
16 * Exception thrown by the state system if a query is done on it after it has
17 * been disposed.
18 *
19 * @author Alexandre Montplaisir
20 * @since 2.0
21 */
22public class StateSystemDisposedException extends Exception {
23
24 private static final long serialVersionUID = 7896041701818620084L;
25
26}
This page took 0.024602 seconds and 5 git commands to generate.