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