return next.execute(result, context);
}
private void handleArguments(final String searchText, final String replaceText) throws IllegalArgumentException {
if( searchText == null ) {
throw new NullInputException("searchtext cannot be null", this);
}
if( replaceText == null ) {
throw new NullInputException("replacettext cannot be null", this);
}
if( searchText.equals("") ) {
throw new SuperCSVException("argument searchText cannot be \"\" as this has no effect", this);
}
this.searchText = searchText;