Files
monica/app/Exceptions/WrongIdException.php
T

13 lines
181 B
PHP

<?php
namespace App\Exceptions;
use RuntimeException;
/**
* Exception thrown by IdHasher if a desired key item is wrong.
*/
class WrongIdException extends RuntimeException
{
}