mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 21:38:39 +00:00
17 lines
348 B
PHP
17 lines
348 B
PHP
<?php
|
|
|
|
namespace Http\Discovery\Exception;
|
|
|
|
use Http\Discovery\Exception;
|
|
|
|
/**
|
|
* Thrown when a discovery does not find any matches.
|
|
*
|
|
* @final do NOT extend this class, not final for BC reasons
|
|
*
|
|
* @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
|
|
*/
|
|
/* final */ class NotFoundException extends \RuntimeException implements Exception
|
|
{
|
|
}
|