First draft

This commit is contained in:
2026-04-30 16:08:01 +02:00
parent 7ce97c0c55
commit e09a9fc2a6
21 changed files with 7137 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
declare(strict_types=1);
namespace App\OAI\Exception;
final class InvalidFormatException extends \Exception
{
public function __construct()
{
$this->message = "The metadata format is not supported for this item.";
$this->code = 'cannotDisseminateFormat';
}
}