tmf: Add waitUntil / condition to tmf.ui.tests
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui.tests / shared / org / eclipse / tracecompass / tmf / ui / tests / shared / WaitTimeoutException.java
1 /*******************************************************************************
2 * Copyright (c) 2008, 2016 Ketan Padegaonkar and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Ketan Padegaonkar - initial API and implementation
10 * Marc-Andre Laperle - Adapted to Trace Compass from SWTBot's TimeoutException
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.tmf.ui.tests.shared;
14 /**
15 * This is an exception that is thrown when a timeout occurs waiting for something (e.g. a condition) to complete.
16 */
17 public class WaitTimeoutException extends RuntimeException {
18
19 private static final long serialVersionUID = -2673174817824776871L;
20
21 /**
22 * Constructs the exception with the given message.
23 *
24 * @param message the message.
25 */
26 public WaitTimeoutException(String message) {
27 super(message);
28 }
29 }
This page took 0.031258 seconds and 5 git commands to generate.