This documentation covers Review Board 1.6.
 You can select a version above or 
 view the latest documentation.
 
205 - Missing Repository
| API Error Code | 205 | 
| HTTP Status Code | HTTP 400 Bad Request | 
| Error Text | There was no repository found at the specified path | 
| Description | A repository path was specified that didn’t seem to contain a valid
repository. | 
Examples
application/json
{
  "err": {
    "code": 205, 
    "msg": "There was no repository found at the specified path"
  }, 
  "stat": "fail"
}
 
application/xml
<?xml version="1.0" encoding="utf-8"?>
<rsp>
 <stat>fail</stat>
 <err>
  <msg>There was no repository found at the specified path</msg>
  <code>205</code>
 </err>
</rsp>