KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > awt > image > RasterFormatException


1 /*
2  * @(#)RasterFormatException.java 1.9 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package java.awt.image;
9
10
11 /**
12  * The <code>RasterFormatException</code> is thrown if there is
13  * invalid layout information in the {@link Raster}.
14  * @version 10 Feb 1997
15  */

16 public class RasterFormatException extends java.lang.RuntimeException JavaDoc {
17     
18     /**
19      * Constructs a new <code>RasterFormatException</code> with the
20      * specified message.
21      * @param s the message to generate when a
22      * <code>RasterFormatException</code> is thrown
23      */

24     public RasterFormatException(String JavaDoc s) {
25         super (s);
26     }
27 }
28
Popular Tags