blob: b064250d29cd3da59ae7074c2aff4faa87a3b2ee [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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:
* Hisashi MIYASHITA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.util.win32.comclutch;
/**
* It will be thrown when a error occurs in invocation.
*/
public class DispatchException extends ComException {
private static final long serialVersionUID = 7228964243884764857L;
/**
* @param message
*/
public DispatchException(String message) {
super(message);
}
}