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 InvalidTokenException extends \Exception
{
public function __construct()
{
$this->message = "The value of the resumptionToken argument is invalid or expired.";
$this->code = 'badResumptionToken';
}
}