for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace A17\Twill\Exceptions;
class MediaCropNotFoundException extends \Exception
{
public function __construct(string $crop)
$message = "Found media but could not find the crop '$crop'";
parent::__construct($message);
}