Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Apache Sling Testing Clients 3.0.12
-
None
Description
Right now the ClientException is the only exception which is used to report unexpected situations, including:
- networking errors (e.g. timeouts)
- unexpected statuscodes
- or otherwise unexpected results.
This makes is hard at the level of a test driver to easily split between infrastructure errors and actual test failures, because it always needs a lock into the logs of the test execution to distinguish these.
To make such a change backwards-compatible, new Exceptions should be introduced which inherit from the existing ClientException. This does not require any changes to signatures, but allow the test-driver to clearly distinguish these different types of errors.