KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)ImagingOpException.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>ImagingOpException</code> is thrown if one of the
13  * {@link BufferedImageOp} or {@link RasterOp} filter methods cannot
14  * process the image.
15  * @version 10 Feb 1997
16  */

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

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