12 lines
293 B
PHP
12 lines
293 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 {}
|