1. /*
  2. * @(#)RasterFormatException.java 1.6 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.image;
  11. /**
  12. * The <code>RasterFormatException</code> is thrown if there is
  13. * invalid layout information in the {@link Raster}.
  14. * @version 10 Feb 1997
  15. */
  16. public class RasterFormatException extends java.lang.RuntimeException {
  17. /**
  18. * Constructs a new <code>RasterFormatException</code> with the
  19. * specified message.
  20. * @param s the message to generate when a
  21. * <code>RasterFormatException</code> is thrown
  22. */
  23. public RasterFormatException(String s) {
  24. super (s);
  25. }
  26. }