ctf: Don't include all test traces in jar
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / 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
6d08acca 13package org.eclipse.linuxtools.tmf.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
a52fde77 24 */
6dd46830 25public class TimeRangeException extends RuntimeException {
a52fde77 26
a52fde77
AM
27 private static final long serialVersionUID = -4067685227260254532L;
28
29}
This page took 0.043079 seconds and 5 git commands to generate.