blob: 052dde82bfab5c5823ae29e378ad72358171cfc5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation and others All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.debug.transport.exception;
import org.eclipse.wst.jsdt.debug.transport.packet.Packet;
import org.eclipse.wst.jsdt.debug.transport.packet.PacketReceiveManager;
import org.eclipse.wst.jsdt.debug.transport.packet.PacketSendManager;
/**
* This exception is thrown if the {@link PacketSendManager} or {@link PacketReceiveManager}
* times out while waiting for a {@link Packet}
*
* @since 1.0
*/
public final class TimeoutException extends Exception {
private static final long serialVersionUID = 1L;
/**
* Constructor
*
* @param message the message for the exception
*/
public TimeoutException(String message) {
super(message);
}
}