summaryrefslogtreecommitdiff
path: root/java/src/IceUtil/FileLockException.java
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2009-12-04 06:51:23 +0100
committerJose <jose@zeroc.com>2009-12-04 06:51:23 +0100
commit0ad40835182795b5f9bedeea10aeb6f07c666e7d (patch)
tree5dff55b02aefb5854a972eb2cef128d1537d5c47 /java/src/IceUtil/FileLockException.java
parentBug 4408 - plugin does not work with x64 only installation (diff)
downloadice-0ad40835182795b5f9bedeea10aeb6f07c666e7d.tar.bz2
ice-0ad40835182795b5f9bedeea10aeb6f07c666e7d.tar.xz
ice-0ad40835182795b5f9bedeea10aeb6f07c666e7d.zip
4089 - IceGrid database corruption.
Diffstat (limited to 'java/src/IceUtil/FileLockException.java')
-rw-r--r--java/src/IceUtil/FileLockException.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/java/src/IceUtil/FileLockException.java b/java/src/IceUtil/FileLockException.java
new file mode 100644
index 00000000000..edef0f5da76
--- /dev/null
+++ b/java/src/IceUtil/FileLockException.java
@@ -0,0 +1,53 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2009 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 IceUtil;
+
+public class FileLockException extends RuntimeException implements Cloneable
+{
+ public FileLockException(String path)
+ {
+ this.path = path;
+ }
+ public java.lang.Object clone()
+ {
+ java.lang.Object o = null;
+ try
+ {
+ o = super.clone();
+ }
+ catch(CloneNotSupportedException ex)
+ {
+ assert false; // Impossible
+ }
+ return o;
+ }
+
+ public String
+ ice_name()
+ {
+ return "IceUtil::FileLockException";
+ }
+
+ public String
+ toString()
+ {
+ java.io.StringWriter sw = new java.io.StringWriter();
+ java.io.PrintWriter pw = new java.io.PrintWriter(sw);
+ IceUtilInternal.OutputBase out = new IceUtilInternal.OutputBase(pw);
+ out.setUseTab(false);
+ out.print(getClass().getName());
+ out.inc();
+ IceInternal.ValueWriter.write(this, out);
+ pw.flush();
+ return sw.toString();
+ }
+
+ public String path;
+}