buildframework/helium/sf/java/core/src/com/nokia/helium/core/ant/HlmExceptionHandler.java
changeset 628 7c4a911dc066
parent 587 85df38eb4012
--- a/buildframework/helium/sf/java/core/src/com/nokia/helium/core/ant/HlmExceptionHandler.java	Wed Jun 16 16:51:40 2010 +0300
+++ b/buildframework/helium/sf/java/core/src/com/nokia/helium/core/ant/HlmExceptionHandler.java	Fri Aug 13 14:59:05 2010 +0300
@@ -1,36 +1,35 @@
 /*
-* Copyright (c) 2007-2008 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:  
-*
-*/
-
+ * Copyright (c) 2007-2008 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.helium.core.ant;
 
 import org.apache.tools.ant.Project;
 
 /**
- * This interface defines the API of an HeliumExecutor task. 
+ * This interface defines the API of an HeliumExecutor task and is used for
+ * exception handling in helium.
  */
 public interface HlmExceptionHandler {
-    
+
     /**
-     * This method will implement the action to be performed by the 
-     * HeliumExecutor plugin. 
-     * @param project
-     * @param module
-     * @param exception
+     * Method handles the given exception.
+     * 
+     * @param project is the ant project.
+     * @param exception is the exception to be handled.
      */
-    void handleException(Project project, String module, Exception exception);
+    void handleException(Project project, Exception exception);
 }
\ No newline at end of file