diff options
author | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-27 05:57:58 +0000 |
---|---|---|
committer | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-27 05:57:58 +0000 |
commit | 4565ac3594f3e544b2048a572902833b9a0f878e (patch) | |
tree | 435566d5a2d48169c3e7d6187552ab6e87a17e8c /libjava/javax/naming/InsufficientResourcesException.java | |
parent | 55a7da41b8bc28b7dc3f5d6c32d53f5364d9914e (diff) | |
download | ppe42-gcc-4565ac3594f3e544b2048a572902833b9a0f878e.tar.gz ppe42-gcc-4565ac3594f3e544b2048a572902833b9a0f878e.zip |
More JNDI changes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37779 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/javax/naming/InsufficientResourcesException.java')
-rw-r--r-- | libjava/javax/naming/InsufficientResourcesException.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libjava/javax/naming/InsufficientResourcesException.java b/libjava/javax/naming/InsufficientResourcesException.java new file mode 100644 index 00000000000..6d3e97635cf --- /dev/null +++ b/libjava/javax/naming/InsufficientResourcesException.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 InsufficientResourcesException extends NamingException +{ + public InsufficientResourcesException () + { + super (); + } + + public InsufficientResourcesException (String msg) + { + super (msg); + } +} |