src/share/classes/java/awt/color/CMMException.java

Print this page




  30 /*
  31  **********************************************************************
  32  **********************************************************************
  33  **********************************************************************
  34  *** COPYRIGHT (c) Eastman Kodak Company, 1997                      ***
  35  *** As  an unpublished  work pursuant to Title 17 of the United    ***
  36  *** States Code.  All rights reserved.                             ***
  37  **********************************************************************
  38  **********************************************************************
  39  **********************************************************************/
  40 
  41 
  42 package java.awt.color;
  43 
  44 
  45 /**
  46  * This exception is thrown if the native CMM returns an error.
  47  */
  48 
  49 public class CMMException extends java.lang.RuntimeException {

  50 
  51     /**
  52      *  Constructs a CMMException with the specified detail message.
  53      *  @param s the specified detail message
  54      */
  55     public CMMException (String s) {
  56         super (s);
  57     }
  58 }


  30 /*
  31  **********************************************************************
  32  **********************************************************************
  33  **********************************************************************
  34  *** COPYRIGHT (c) Eastman Kodak Company, 1997                      ***
  35  *** As  an unpublished  work pursuant to Title 17 of the United    ***
  36  *** States Code.  All rights reserved.                             ***
  37  **********************************************************************
  38  **********************************************************************
  39  **********************************************************************/
  40 
  41 
  42 package java.awt.color;
  43 
  44 
  45 /**
  46  * This exception is thrown if the native CMM returns an error.
  47  */
  48 
  49 public class CMMException extends java.lang.RuntimeException {
  50     private static final long serialVersionUID = 5775558044142994965L;
  51 
  52     /**
  53      *  Constructs a CMMException with the specified detail message.
  54      *  @param s the specified detail message
  55      */
  56     public CMMException (String s) {
  57         super (s);
  58     }
  59 }