common: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.statesystem.core / src / org / eclipse / tracecompass / statesystem / core / exceptions / StateSystemDisposedException.java
1 /*******************************************************************************
2 * Copyright (c) 2012, 2014 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
13 package org.eclipse.tracecompass.statesystem.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 */
21 public class StateSystemDisposedException extends Exception {
22
23 private static final long serialVersionUID = 7896041701818620084L;
24
25 /**
26 * Create a new simple StateSystemDisposedException.
27 */
28 public StateSystemDisposedException() {
29 super();
30 }
31
32 /**
33 * Create a new StateSystemDisposedException based on a previous one.
34 *
35 * @param e
36 * The previous exception
37 */
38 public StateSystemDisposedException(Throwable e) {
39 super(e);
40 }
41
42 }
This page took 0.035961 seconds and 5 git commands to generate.