Laravel version update

Laravel version update
This commit is contained in:
Manish Verma
2018-08-06 18:48:58 +05:30
parent d143048413
commit 126fbb0255
13678 changed files with 1031482 additions and 778530 deletions

View File

@@ -21,6 +21,7 @@ class AwsException extends \RuntimeException
private $errorCode;
private $connectionError;
private $transferInfo;
private $errorMessage;
/**
* @param string $message Exception message
@@ -47,6 +48,9 @@ class AwsException extends \RuntimeException
$this->transferInfo = isset($context['transfer_stats'])
? $context['transfer_stats']
: [];
$this->errorMessage = isset($context['message'])
? $context['message']
: null;
parent::__construct($message, 0, $previous);
}
@@ -80,6 +84,16 @@ class AwsException extends \RuntimeException
return $this->command;
}
/**
* Get the concise error message if any.
*
* @return string|null
*/
public function getAwsErrorMessage()
{
return $this->errorMessage;
}
/**
* Get the sent HTTP request if any.
*