Fixed compilation errors.

This commit is contained in:
Juan Carlos Luciani
2007-03-19 17:57:15 +00:00
parent bbb8b25e49
commit 3836edc9d7
8 changed files with 52 additions and 17 deletions

View File

@@ -41,6 +41,7 @@ public class ClientKeystoreSetup
final static int ERROR_REQUIRED_VALUE_MISSING = -11;
final static int ERROR_EXEC_INTERRUPTED = -12;
final static int ERROR_IO_EXCEPTION = -13;
final static int ERROR_EXCEPTION = -14;
final static String INSTALL_DIR = "installdir=";
final static String PROPERTY_FILE = "propertyfile=";
@@ -93,9 +94,9 @@ public class ClientKeystoreSetup
//fw.close();
// DEBUG STUFF
}
catch (IOException e)
catch (Exception e)
{
rc = ERROR_IO_EXCEPTION;
rc = ERROR_EXCEPTION;
}
}
@@ -376,6 +377,9 @@ public class ClientKeystoreSetup
case ERROR_IO_EXCEPTION:
sMessage = "IOException ";
break;
case ERROR_EXCEPTION:
sMessage = "Exception ";
break;
default:
sMessage = "Unknown error";
break;