for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace HansOtt\Lastify\Exception;
use Exception;
final class PlaylistDoesNotExist extends Exception
{
private $name;
public function __construct($name)
$this->name = $name;
}
public function getName()
return $this->name;