for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanedev\Assets\Exceptions;
/**
* Class NotInitiatedException
*
* @package Arcanedev\Assets\Exceptions
* @author ARCANEDEV <[email protected]>
*/
class NotInitiatedException extends \Exception
{
/** @throws static */
public static function throw()
throw new static('You need to initiate the multiple assets with `php artisan assets:init`');
}