14 lines
302 B
PHP
14 lines
302 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OaiSymfony\OAI\Exception;
|
|
|
|
final class InvalidFormatException extends \Exception
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->message = "The metadata format is not supported for this item.";
|
|
$this->code = 'cannotDisseminateFormat';
|
|
}
|
|
} |