for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Coderello\Laraflash\Exceptions;
class SkinNotFoundException extends InvalidArgumentException
{
public function __construct($skin)
$this->message = sprintf('Skin [%s] not found.', $skin);
}