for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) Flipbox Digital Limited
* @license https://github.com/flipbox/spark/blob/master/LICENSE
* @link https://github.com/flipbox/spark
*/
namespace flipbox\spark\exceptions;
use yii\base\ErrorException as Exception;
* @author Flipbox Factory <[email protected]>
* @since 1.0.0
class ElementNotFoundException extends Exception
{
* @return string
public function getName()
return 'Element Not Found Exception';
}