public static final PipelineComponent IGNORE () {
return createPipelineComponent(new NoHandler(), new ACCEPT());
}
public boolean canHandle(char c) throws IllegalInputCharacterException {
throw new IllegalInputCharacterException("No character can be handled. Seen: '" + c + "'");
}