You are here

public function views_oai_pmh_error_cannot_disseminate_format::get_message in Views OAI-PMH 7.3

Return the message.

Overrides views_oai_pmh_error::get_message

File

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

Class

views_oai_pmh_error_cannot_disseminate_format
Views OAI-PMH error can not disseminate format.

Code

public function get_message() {
  return t("The metadata prefix '@value' is not supported by this repository.", array(
    '@value' => $this->value,
  ));
}