290N/A/*
290N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
290N/A *
290N/A * This code is free software; you can redistribute it and/or modify it
290N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
290N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
290N/A *
290N/A * This code is distributed in the hope that it will be useful, but WITHOUT
290N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
290N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
290N/A * version 2 for more details (a copy is included in the LICENSE file that
290N/A * accompanied this code).
290N/A *
290N/A * You should have received a copy of the GNU General Public License version
290N/A * 2 along with this work; if not, write to the Free Software Foundation,
290N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
290N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
290N/A */
290N/A
290N/A/*
290N/A Created by gbp, October 25, 1997
290N/A
290N/A *
290N/A */
290N/A/**********************************************************************
290N/A **********************************************************************
290N/A **********************************************************************
290N/A *** COPYRIGHT (c) Eastman Kodak Company, 1997 ***
290N/A *** As an unpublished work pursuant to Title 17 of the United ***
290N/A *** States Code. All rights reserved. ***
290N/A **********************************************************************
290N/A **********************************************************************
290N/A **********************************************************************/
290N/A
290N/A
290N/Apackage java.awt.color;
290N/A
290N/A
290N/A/**
290N/A * This exception is thrown if the native CMM returns an error.
290N/A */
290N/A
290N/Apublic class CMMException extends java.lang.RuntimeException {
290N/A
290N/A /**
290N/A * Constructs a CMMException with the specified detail message.
290N/A * @param s the specified detail message
290N/A */
290N/A public CMMException (String s) {
290N/A super (s);
290N/A }
290N/A}