/**
  * To check whether the the query options $orderby, $inlinecount, $skip
  * or $top is applicable for the current requested resource.
  * 
  * @return void
  * 
  * @throws ODataException Throws bad request error if any of the query 
  *                        options $orderby, $inlinecount, $skip or $top
  *                        cannot be applied to the requested resource.
  *
  */
 private function _checkSetQueryApplicable()
 {
     if (!$this->_setQueryApplicable) {
         ODataException::createBadRequestError(Messages::queryProcessorQuerySetOptionsNotApplicable());
     }
 }