class Google_Service_Exception extends Exception (View source)

Properties

protected $errors Optional list of errors returned in a JSON body of an HTTP error response. from Exception

Methods

__construct(string $message, int $code = 0, Exception $previous = null, array>|null $errors = [])

Override default constructor to add the ability to set $errors and a retry map.

from Exception
array>|null
getErrors()

An example of the possible errors returned.

from Exception

Details

__construct(string $message, int $code = 0, Exception $previous = null, array>|null $errors = [])

Override default constructor to add the ability to set $errors and a retry map.

Parameters

string $message
int $code
Exception $previous
array>|null $errors List of errors returned in an HTTP response or null. Defaults to [].

array>|null getErrors()

An example of the possible errors returned.

[ { "domain": "global", "reason": "authError", "message": "Invalid Credentials", "locationType": "header", "location": "Authorization", } ]

Return Value

array>|null List of errors returned in an HTTP response or null.