1 /* 2 * @(#)CMMException.java 1.11 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 /* 9 * @(#)JavaCMMException.java @(#)JavaCMMException.java 1.2 11/04/97 10 11 Created by gbp, October 25, 1997 12 13 * 14 */ 15 /********************************************************************** 16 ********************************************************************** 17 ********************************************************************** 18 *** COPYRIGHT (c) Eastman Kodak Company, 1997 *** 19 *** As an unpublished work pursuant to Title 17 of the United *** 20 *** States Code. All rights reserved. *** 21 ********************************************************************** 22 ********************************************************************** 23 **********************************************************************/ 24 25 26 package java.awt.color; 27 28 29 /** 30 * This exception is thrown if the native CMM returns an error. 31 */ 32 33 public class CMMException extends java.lang.RuntimeException { 34 35 /** 36 * Constructs a CMMException with the specified detail message. 37 * @param s the specified detail message 38 */ 39 public CMMException (String s) { 40 super (s); 41 } 42 } 43