summaryrefslogtreecommitdiff
path: root/java/src/IceUtil/FileLockException.java
diff options
context:
space:
mode:
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;
+}