buildframework/helium/sf/java/checktools/src/com/nokia/helium/checktools/CheckEngine.java
changeset 628 7c4a911dc066
parent 587 85df38eb4012
--- a/buildframework/helium/sf/java/checktools/src/com/nokia/helium/checktools/CheckEngine.java	Wed Jun 16 16:51:40 2010 +0300
+++ b/buildframework/helium/sf/java/checktools/src/com/nokia/helium/checktools/CheckEngine.java	Fri Aug 13 14:59:05 2010 +0300
@@ -46,7 +46,7 @@
     /**
      * Method verifies Ant version.
      */
-    public void verifyAntVersion() {
+    public void verifyAntVersion() throws CheckToolException {
         String expVersion = configuration.getProperty("ant.version");
         String errorMsg = "Supported Ant version is not defined in 'helium.basic.tools.config' file under helium config folder.";
         verifyIsExpectedToolVersionConfigured(expVersion, errorMsg);
@@ -59,7 +59,7 @@
     /**
      * Method verifies Python version.
      */
-    public void verifyPythonVersion() {
+    public void verifyPythonVersion() throws CheckToolException {
         String expVersion = configuration.getProperty("python.version");
         String errorMsg = "Supported Python version is not defined in 'helium.basic.tools.config' file under helium config folder.";
         verifyIsExpectedToolVersionConfigured(expVersion, errorMsg);