1. /*
  2. * @(#)ProfileDataException.java 1.10 01/11/29
  3. *
  4. * Copyright 2002 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. */
  16. public ProfileDataException(String s) {
  17. super (s);
  18. }
  19. }