for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CloudyCity\IPayNowSDK\Exceptions;
class InvalidSignException extends Exception
{
/**
* Bootstrap.
*
* @param string $message
* @param array|string $raw
*/
public function __construct($message, $raw = [])
parent::__construct('INVALID_SIGN: '.$message, $raw, self::INVALID_SIGN);
}