try {
return getConfiguration().getServlet();
} catch (ClassNotFoundException e) {
throw new HttpNotFoundException( _url, e );
} catch (IllegalAccessException e) {
throw new HttpInternalErrorException( _url, e );
} catch (InstantiationException e) {
throw new HttpInternalErrorException( _url, e );
} catch (ClassCastException e) {
throw new HttpInternalErrorException( _url, e );
}
}