Made message signing in Cryptography use SHA512 as the message content for... #1

Closed
netkas wants to merge 421 commits from master into dev
Showing only changes of commit cffed44f96 - Show all commits

View file

@ -0,0 +1,18 @@
<?php
namespace Socialbox\Exceptions\Standard;
use Socialbox\Enums\StandardError;
class MissingArgumentException extends StandardException
{
/**
* Thrown when a required parameter is missing
*
* @param string $parameterName
*/
public function __construct(string $parameterName)
{
parent::__construct(sprintf('Missing required parameter: %s', $parameterName), StandardError::RPC_INVALID_ARGUMENTS);
}
}