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 702b995 commit a3082d4Copy full SHA for a3082d4
src/Exception/AwsException.php
@@ -42,13 +42,13 @@ class AwsException extends \RuntimeException implements
42
* @param string $message Exception message
43
* @param CommandInterface $command
44
* @param array $context Exception context
45
- * @param \Exception $previous Previous exception (if any)
+ * @param \Throwable $previous Previous exception (if any)
46
*/
47
public function __construct(
48
$message,
49
CommandInterface $command,
50
array $context = [],
51
- \Exception $previous = null
+ \Throwable $previous = null
52
) {
53
$this->data = isset($context['body']) ? $context['body'] : [];
54
$this->command = $command;
0 commit comments