for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Alcalyn\PayplugBundle\Exceptions;
class PayplugUndefinedAccountParameterException extends PayplugException
{
/**
* @param string $missingParameter
*/
public function __construct($missingParameter)
parent::__construct(sprintf('Payplug account parameter "%s" is needed but not set.', $missingParameter));
}