for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thinktomorrow\AssetLibrary\Exceptions;
use Exception;
class CorruptMediaException extends Exception
{
public static function missingMediaRelation($id)
return new static('There seems to be something wrong with asset id '.$id.'. There is no media attached at this time.');
}