You are here

class views_oai_pmh_error_no_records_match in Views OAI-PMH 7.3

Views OAI-PMH error no records match.

Hierarchy

Expanded class hierarchy of views_oai_pmh_error_no_records_match

File

includes/error.inc, line 264
Base class for an OAI-PMH error.

View source
class views_oai_pmh_error_no_records_match extends views_oai_pmh_error {

  /**
   * Constructor.
   */
  public function __construct() {
    parent::__construct('noRecordsMatch');
  }

  /**
   * Return the message.
   */
  public function get_message() {
    return t('No records match the request criteria.');
  }

}

Members