Fixed compilation errors.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user