1. /*
  2. * @(#)ProfileDataException.java 1.11 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. package java.awt.color;
  11. /**
  12. * This exception is thrown when an error occurs in accessing or
  13. * processing an ICC_Profile object.
  14. */
  15. public class ProfileDataException extends java.lang.RuntimeException {
  16. /**
  17. * Constructs a ProfileDataException with the specified detail message.
  18. */
  19. public ProfileDataException(String s) {
  20. super (s);
  21. }
  22. }