for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PHPKitchen\Platform\Exception\Runtime\App;
/**
* Represents an exception caused by using an unknown class.
*
* @package PHPKitchen\Platform\Exception\Runtime\App
* @author Dmitry Kolodko <[email protected]>
*/
class UnknownClassException extends \RuntimeException {
public function getName() {
return 'Unknown Class';
}