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