1. /*
  2. * @(#)CMMException.java 1.7 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. /*
  11. * @(#)JavaCMMException.java @(#)JavaCMMException.java 1.2 11/04/97
  12. Created by gbp, October 25, 1997
  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. package java.awt.color;
  25. /**
  26. * This exception is thrown if the native CMM returns an error.
  27. */
  28. public class CMMException extends java.lang.RuntimeException {
  29. /**
  30. * Constructs a CMMException with the specified detail message.
  31. */
  32. public CMMException (String s) {
  33. super (s);
  34. }
  35. }