thucydides-webtests/thucydides

Better exception reporting in ResizableImage

Closed this issue · 1 comments

net.thucydides.core.images.ResizableImage in method resizeImage, lines 68-70:

} catch (Throwable e) {
    throw new IllegalArgumentException();
}

Please pass the caught exception to the thrown IllegalArgumentException: throw new IllegalArgumentException(e)
I currently see those exception on my CI server and I can only guess what went wrong.