diff options
| author | Anthony Green <green@redhat.com> | 2000-11-27 05:57:58 +0000 |
|---|---|---|
| committer | Anthony Green <green@gcc.gnu.org> | 2000-11-27 05:57:58 +0000 |
| commit | e36b9711fb576855928df06107ba52635e011159 (patch) | |
| tree | 435566d5a2d48169c3e7d6187552ab6e87a17e8c /libjava/javax/naming/TimeLimitExceededException.java | |
| parent | 1789599b3de66875caae60502739872aca8923ab (diff) | |
| download | gcc-e36b9711fb576855928df06107ba52635e011159.zip gcc-e36b9711fb576855928df06107ba52635e011159.tar.gz gcc-e36b9711fb576855928df06107ba52635e011159.tar.bz2 | |
More JNDI changes.
From-SVN: r37779
Diffstat (limited to 'libjava/javax/naming/TimeLimitExceededException.java')
| -rw-r--r-- | libjava/javax/naming/TimeLimitExceededException.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libjava/javax/naming/TimeLimitExceededException.java b/libjava/javax/naming/TimeLimitExceededException.java new file mode 100644 index 0000000..d3124f4 --- /dev/null +++ b/libjava/javax/naming/TimeLimitExceededException.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 TimeLimitExceededException extends LimitExceededException +{ + public TimeLimitExceededException () + { + super (); + } + + public TimeLimitExceededException (String msg) + { + super (msg); + } +} |
