Remove spurious test of XScale and HARD_FLOAT floags
[official-gcc.git] / libjava / javax / naming / CommunicationException.java
blobf5e67efe3ef90701766eeec680b6cbedb03dc3c3
1 /* Copyright (C) 2000 Free Software Foundation
3 This file is part of libgcj.
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7 details. */
9 package javax.naming;
11 import java.lang.Exception;
13 public class CommunicationException extends NamingException
15 public CommunicationException ()
17 super ();
20 public CommunicationException (String msg)
22 super (msg);