1. /*
  2. * @(#)ImagingOpException.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>ImagingOpException</code> is thrown if one of the
  10. * {@link BufferedImageOp} or {@link RasterOp} filter methods cannot
  11. * process the image.
  12. * @version 10 Feb 1997
  13. */
  14. public class ImagingOpException extends java.lang.RuntimeException {
  15. /**
  16. * Constructs an <code>ImagingOpException</code> object with the
  17. * specified message.
  18. * @param s the message to generate when a
  19. * <code>ImagingOpException</code> is thrown
  20. */
  21. public ImagingOpException(String s) {
  22. super (s);
  23. }
  24. }