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