01: /*
02: * LayoutException.java
03: *
04: * Copyright (c) 1997-2003 Sun Microsystems, Inc. All Rights Reserved.
05: *
06: * See the file "LICENSE.txt" for information on usage and redistribution
07: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
08: */
09: package pnuts.awt;
10:
11: /**
12: * Throws to indicate that there is an error in layout components
13: *
14: * @version 1.1
15: * @author Toyokazu Tomatsu
16: */
17: public class LayoutException extends RuntimeException {
18:
19: public LayoutException() {
20: this ("");
21: }
22:
23: public LayoutException(String message) {
24: super(message);
25: }
26: }
|