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
CommitLineData
a52fde77 1/*******************************************************************************
6dd46830 2 * Copyright (c) 2012, 2014 Ericsson
a52fde77
AM
3 * Copyright (c) 2010, 2011 École Polytechnique de Montréal
4 * Copyright (c) 2010, 2011 Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
6dd46830 5 *
a52fde77
AM
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
6dd46830 10 *
a52fde77
AM
11 *******************************************************************************/
12
bcec0116 13package org.eclipse.linuxtools.statesystem.core.exceptions;
a52fde77
AM
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.
6dd46830 19 *
a52fde77
AM
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.
a52fde77 22 *
6dd46830 23 * @author Alexandre Montplaisir
bcec0116 24 * @since 3.0
a52fde77 25 */
6dd46830 26public class TimeRangeException extends RuntimeException {
a52fde77 27
a52fde77
AM
28 private static final long serialVersionUID = -4067685227260254532L;
29
30}
This page took 0.055473 seconds and 5 git commands to generate.