mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 21:38:39 +00:00
15 lines
279 B
PHP
15 lines
279 B
PHP
<?php
|
|
|
|
namespace Http\Discovery\Exception;
|
|
|
|
use Http\Discovery\Exception;
|
|
|
|
/**
|
|
* Thrown when a class fails to instantiate.
|
|
*
|
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
|
*/
|
|
final class ClassInstantiationFailedException extends \RuntimeException implements Exception
|
|
{
|
|
}
|