From e36b9711fb576855928df06107ba52635e011159 Mon Sep 17 00:00:00 2001 From: Anthony Green Date: Mon, 27 Nov 2000 05:57:58 +0000 Subject: More JNDI changes. From-SVN: r37779 --- .../javax/naming/ServiceUnavailableException.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 libjava/javax/naming/ServiceUnavailableException.java (limited to 'libjava/javax/naming/ServiceUnavailableException.java') diff --git a/libjava/javax/naming/ServiceUnavailableException.java b/libjava/javax/naming/ServiceUnavailableException.java new file mode 100644 index 0000000..de76f28 --- /dev/null +++ b/libjava/javax/naming/ServiceUnavailableException.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 ServiceUnavailableException extends NamingException +{ + public ServiceUnavailableException () + { + super (); + } + + public ServiceUnavailableException (String msg) + { + super (msg); + } +} -- cgit v1.1