diff options
Diffstat (limited to 'libjava/javax/naming/AuthenticationNotSupportedException.java')
-rw-r--r-- | libjava/javax/naming/AuthenticationNotSupportedException.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libjava/javax/naming/AuthenticationNotSupportedException.java b/libjava/javax/naming/AuthenticationNotSupportedException.java new file mode 100644 index 00000000000..2078285bf86 --- /dev/null +++ b/libjava/javax/naming/AuthenticationNotSupportedException.java @@ -0,0 +1,25 @@ +/* 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 AuthenticationNotSupportedException + extends NamingSecurityException +{ + public AuthenticationNotSupportedException () + { + super (); + } + + public AuthenticationNotSupportedException (String msg) + { + super (msg); + } +} |