1 package org.jmage.filterchain; 2 3 import org.jmage.JmageException; 4 5 /*** 6 * FilterChainException 7 */ 8 public class FilterChainException extends JmageException { 9 10 /*** 11 * Construct a FilterChainException with a message 12 * 13 * @param message 14 */ 15 public FilterChainException(String message) { 16 super(message); 17 } 18 }