View Javadoc

1   package org.jmage.filter;
2   
3   import org.jmage.JmageException;
4   
5   /***
6    * ImageHandlingException
7    */
8   public class FilterException extends JmageException {
9   
10      public FilterException(String message) {
11          super(message);
12      }
13  }