blob: 6baf57f7f7818a8466d667cf3eae3c29ee5e0a86 [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.core.jsdi;
/**
* Exception that is thrown when a request is made to a {@link ThreadReference}
* which is not allowed based on its current state.
*
* Clients can instantiate this class.
*
* @since 1.0
*/
public final class IncompatibleThreadStateException extends Exception {
private static final long serialVersionUID = 1L;
/**
* Constructor
*
* @param message the backing message for the exception
* @param cause the cause (if any) for this exception. <code>null</code> is
* accepted.
*/
public IncompatibleThreadStateException(String message, Throwable cause) {
super(message, cause);
}
}