14 lines
294 B
PHP
14 lines
294 B
PHP
<?php
|
|
|
|
namespace App\Support\Confirm;
|
|
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* Thrown when a confirm token fails to decode/validate or has already been used.
|
|
* Callers treat it as "reject the confirm" — never leaked to the operator verbatim.
|
|
*/
|
|
class InvalidConfirmToken extends RuntimeException
|
|
{
|
|
}
|