()
| 364 | } |
| 365 | |
| 366 | public void run() { |
| 367 | try { |
| 368 | execute(); |
| 369 | } catch (BadRequestException e) { |
| 370 | query.badRequest(e.getMessage()); |
| 371 | } catch (GnuplotException e) { |
| 372 | query.badRequest("<pre>" + e.getMessage() + "</pre>"); |
| 373 | } catch (RuntimeException e) { |
| 374 | query.internalError(e); |
| 375 | } catch (IOException e) { |
| 376 | query.internalError(e); |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | private void execute() throws IOException { |
| 381 | final int nplotted = runGnuplot(query, basepath, plot); |
nothing calls this directly
no test coverage detected