If error happen in FileApi, then client doesn't have enough info about error. An example not clear was it a general error or just maintenance ``` java StringResponse stringResponse = this.inputStreamToString(response.getEntity().getContent(), charset); if(response.getStatusLine().getStatusCode() != 200) { throw new ApiException(stringResponse.getContents()); } ``` _DoD_: ApiException must contains more details: - Status code - Error code (`General_Error`; `Maintenance`; etc) - Error message
If error happen in FileApi, then client doesn't have enough info about error. An example not clear was it a general error or just maintenance
DoD: ApiException must contains more details:
General_Error;Maintenance; etc)