mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 07:35:24 +02:00
Fix RemoteFileSecurityException message
This commit is contained in:
parent
b21bec3388
commit
966828ec57
1 changed files with 2 additions and 2 deletions
|
@ -58,10 +58,10 @@ public class RemoteFileSecurityException extends RemoteFileException {
|
|||
*/
|
||||
private static SystemMessage getMyMessage() {
|
||||
if (myMessage == null) {
|
||||
String l1 = "Operation failed. File system input or output error";
|
||||
String l1 = "Operation failed. Security violation";
|
||||
String l2 = "Message reported from file system: %1";
|
||||
try {
|
||||
myMessage = new SystemMessage("RSE", "F", "1002", SystemMessage.ERROR, l1, l2);
|
||||
myMessage = new SystemMessage("RSE", "F", "1001", SystemMessage.ERROR, l1, l2);
|
||||
} catch (IndicatorException e) {
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue