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

@@ -40,7 +40,8 @@ public class ServerKeystoreSetup
final static int ERROR_MISSING_INSTALL_DIR_PARAM = -10;
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_IO_EXCEPTION = -13;
final static int ERROR_EXCEPTION = -14;
final static String INSTALL_DIR = "installdir=";
final static String PROPERTY_FILE = "propertyfile=";
@@ -85,9 +86,9 @@ public class ServerKeystoreSetup
//fw.close();
// DEBUG STUFF
}
catch (IOException e)
catch (Exception e)
{
rc = ERROR_IO_EXCEPTION;
rc = ERROR_EXCEPTION;
}
}
@@ -382,6 +383,9 @@ public class ServerKeystoreSetup
case ERROR_IO_EXCEPTION:
sMessage = "IO Exception ";
break;
case ERROR_EXCEPTION:
sMessage = "Exception ";
break;
default:
sMessage = "Unknown error";
break;