File: /home/accemeff/vendor/craftcms/cms/src/errors/MissingComponentException.php
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\errors;
use yii\base\Exception;
/**
* MissingComponentException represents an exception caused by creating a component with a missing class.
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0
*/
class MissingComponentException extends Exception
{
/**
* @return string the user-friendly name of this exception
*/
public function getName(): string
{
return 'Missing component class';
}
}