FSF GCC merge 02/23/03
[official-gcc.git] / libjava / gnu / gcj / xlib / XConnectException.java
blob829da660c1dfa15f6d519d446916ec6fe99cfe2d
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 gnu.gcj.xlib;
11 import java.io.IOException;
13 /**
14 * Indicates that something went wrong with the connection to an X11
15 * display.
17 * @author Rolf W. Rasmussen <rolfwr@ii.uib.no>
19 public class XConnectException extends IOException
21 public XConnectException()
23 super();
26 public XConnectException(String message)
28 super(message);