private CouchDoc<DesignDocumentsVersionInfo> queryCurrentVersionInfoDoc() throws ActionFailedException, NotFoundException {
try {
return db.get( DESIGN_DOCS_VERSION_ID, serializer );
} catch ( ActionFailedException e ) {
if ( e.getStatus() == 404 ) {
throw new NotFoundException( "No document found for <" + DESIGN_DOCS_VERSION_ID + ">", e );
}
throw e;
}
}