KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > awt > color > ProfileDataException


1 /*
2  * @(#)ProfileDataException.java 1.15 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.color;
9
10 /**
11  * This exception is thrown when an error occurs in accessing or
12  * processing an ICC_Profile object.
13  */

14
15 public class ProfileDataException extends java.lang.RuntimeException JavaDoc {
16
17     /**
18      * Constructs a ProfileDataException with the specified detail message.
19      * @param s the specified detail message
20      */

21     public ProfileDataException(String JavaDoc s) {
22     super (s);
23     }
24 }
25
Popular Tags