for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SirSova\Webhooks\Exceptions;
use GuzzleHttp\Exception\GuzzleException;
class WebhookSendingException extends \RuntimeException implements WebhookException
{
public function __construct(GuzzleException $previous)
$message = "Error occurred under sending message: \"{$previous->getMessage()}\"";
parent::__construct($message, $previous->getCode(), $previous);
}