1. /*
  2. * @(#)ProfileDataException.java 1.14 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.awt.color;
  8. /**
  9. * This exception is thrown when an error occurs in accessing or
  10. * processing an ICC_Profile object.
  11. */
  12. public class ProfileDataException extends java.lang.RuntimeException {
  13. /**
  14. * Constructs a ProfileDataException with the specified detail message.
  15. * @param s the specified detail message
  16. */
  17. public ProfileDataException(String s) {
  18. super (s);
  19. }
  20. }