We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fe9d02 commit 6291e91Copy full SHA for 6291e91
exceptions.php
@@ -108,9 +108,9 @@ public function __construct($method = null)
108
*/
109
class JsonrpcInvalidParamsError extends JsonrpcException
110
{
111
- public function __construct()
+ public function __construct($data = null)
112
113
- parent::__construct(self::INVALID_PARAMS, "Invalid params");
+ parent::__construct(self::INVALID_PARAMS, "Invalid params", $data);
114
}
115
116
0 commit comments