blob: 9bdf95f4756f60082199f75d1bd128faf905ff8a [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:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.rtsystem.events;
public interface IRuntimeErrorEvent extends IRuntimeEvent {
/**
* @return the error code
*/
public int getErrorCode();
/**
* @return the error message
*/
public String getErrorMessage();
}