package beans;
import java.io.IOException;
import org.apache.camel.Exchange;
public class throwIOException {
/**
* @throws IOException
*/
public static void helloExample(String message, Exchange exchange) throws IOException {
throw new IOException("An IOException has been caught");
}
}