diff options
Diffstat (limited to 'java/src/IceGridGUI/Application/UpdateFailedException.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/UpdateFailedException.java | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/java/src/IceGridGUI/Application/UpdateFailedException.java b/java/src/IceGridGUI/Application/UpdateFailedException.java index c1c27aea078..3f148185fcf 100755 --- a/java/src/IceGridGUI/Application/UpdateFailedException.java +++ b/java/src/IceGridGUI/Application/UpdateFailedException.java @@ -1,26 +1,26 @@ -// **********************************************************************
-//
-// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-package IceGridGUI.Application;
-
-class UpdateFailedException extends Exception
-{
- UpdateFailedException(TreeNode parent, String id)
- {
- _parent = parent;
- _id = id;
- }
-
- public String toString()
- {
- return _parent.getFullId().toString() + " has already a child with '" + _id + "' as ID.";
- }
-
- private TreeNode _parent;
- private String _id;
-}
+// ********************************************************************** +// +// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** +package IceGridGUI.Application; + +class UpdateFailedException extends Exception +{ + UpdateFailedException(TreeNode parent, String id) + { + _parent = parent; + _id = id; + } + + public String toString() + { + return _parent.getFullId().toString() + " has already a child with '" + _id + "' as ID."; + } + + private TreeNode _parent; + private String _id; +} |