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