Files
monica/app/Exceptions/WrongIdException.php
2018-08-20 08:10:57 +02:00

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
{
}