for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the limit0/assets package.
*
* (c) Limit Zero, LLC <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Limit0\Assets\Exception;
/**
* Exceptions emitting from the Asset Manager
* @author Josh Worden <[email protected]>
class ManagerException extends \Exception
{
public static function missingStorageEngine()
return new self('No storage engine found, did you inject it?');
}