aboutsummaryrefslogtreecommitdiff
path: root/libjava/javax/naming/LinkException.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/javax/naming/LinkException.java')
-rw-r--r--libjava/javax/naming/LinkException.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/libjava/javax/naming/LinkException.java b/libjava/javax/naming/LinkException.java
new file mode 100644
index 00000000000..90798c159aa
--- /dev/null
+++ b/libjava/javax/naming/LinkException.java
@@ -0,0 +1,24 @@
+/* Copyright (C) 2000 Free Software Foundation
+
+ This file is part of libgcj.
+
+This software is copyrighted work licensed under the terms of the
+Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
+details. */
+
+package javax.naming;
+
+import java.lang.Exception;
+
+public class LinkException extends NamingException
+{
+ public LinkException ()
+ {
+ super ();
+ }
+
+ public LinkException (String msg)
+ {
+ super (msg);
+ }
+}