for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Behatch\Exception;
final class MissingPackageException extends \RuntimeException
{
public function __construct($package, $method)
parent::__construct("Please install $package composer package in order to use $method method.");
}