1
0
Fork 0
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:
Martin Oberhuber 2006-08-17 21:39:11 +00:00
parent b21bec3388
commit 966828ec57

View file

@ -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) {
}
}