From 21434cfc60bf26efb66e19b4ef79ad7f8d549f66 Mon Sep 17 00:00:00 2001 From: Anthony Green Date: Mon, 27 Nov 2000 08:44:59 +0000 Subject: More new classes. From-SVN: r37786 --- .../directory/AttributeModificationException.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 libjava/javax/naming/directory/AttributeModificationException.java (limited to 'libjava/javax/naming/directory/AttributeModificationException.java') diff --git a/libjava/javax/naming/directory/AttributeModificationException.java b/libjava/javax/naming/directory/AttributeModificationException.java new file mode 100644 index 0000000..208e693 --- /dev/null +++ b/libjava/javax/naming/directory/AttributeModificationException.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 AttributeModificationException extends NamingException +{ + public AttributeModificationException () + { + super (); + } + + public AttributeModificationException (String msg) + { + super (msg); + } +} -- cgit v1.1