pcap: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.statesystem.core / src / org / eclipse / linuxtools / statesystem / core / exceptions / TimeRangeException.java
1 /*******************************************************************************
2 * Copyright (c) 2012, 2014 Ericsson
3 * Copyright (c) 2010, 2011 École Polytechnique de Montréal
4 * Copyright (c) 2010, 2011 Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
5 *
6 * All rights reserved. This program and the accompanying materials are
7 * made available under the terms of the Eclipse Public License v1.0 which
8 * accompanies this distribution, and is available at
9 * http://www.eclipse.org/legal/epl-v10.html
10 *
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.statesystem.core.exceptions;
14
15 /**
16 * Generic exception for when the user specifies an invalid time stamp. Usually
17 * timestamps must be within the range of the trace or state history being
18 * queried.
19 *
20 * For insertions, it's forbidden to insert new states "in the past" (before where
21 * the cursor is), so this exception is also thrown in that case.
22 *
23 * @author Alexandre Montplaisir
24 * @since 3.0
25 */
26 public class TimeRangeException extends RuntimeException {
27
28 private static final long serialVersionUID = -4067685227260254532L;
29
30 }
This page took 0.034275 seconds and 5 git commands to generate.