connectivity/com.nokia.tcf.test/src/com/nokia/tcf/test/TestErrorMonitor.java
author timkelly
Tue, 17 Nov 2009 14:11:48 -0600
changeset 585 8303e1e3d7f3
parent 0 fb279309251b
permissions -rw-r--r--
Fix PKG part for bug 9052.

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/
package com.nokia.tcf.test;

import org.eclipse.core.runtime.IStatus;

import com.nokia.tcf.api.ITCErrorListener;

public class TestErrorMonitor implements ITCErrorListener {

	public void errorOccurred(IStatus status) {
		System.out.printf("TestErrorMonitor.errorOccurred = %s\n", status.getMessage());
	}

}