You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
<?php
|
|
|
|
/**
|
|
* Class OssException
|
|
*
|
|
* This is the class that OSSClient is expected to thrown, which the caller needs to handle properly.
|
|
* It has the OSS specific errors which is useful for troubleshooting.
|
|
*
|
|
* @package OSS\Core
|
|
*/
|
|
class OssException extends \Exception
|
|
{
|
|
private $details = array();
|
|
|
|
function __construct($details)
|
|
{
|
|
if (is_array($details)) {
|
|
$message = $details['code'] . ': ' . $details['message']
|
|
. ' RequestId: ' . $details['request-id'];
|
|
parent::__construct($message);
|
|
$this->details = $details;
|
|
} else {
|
|
$message = $details;
|
|
parent::__construct($message);
|
|
}
|
|
}
|
|
|
|
public function getHTTPStatus()
|
|
{
|
|
return isset($this->details['status']) ? $this->details['status'] : '';
|
|
}
|
|
|
|
public function getRequestId()
|
|
{
|
|
return isset($this->details['request-id']) ? $this->details['request-id'] : '';
|
|
}
|
|
|
|
public function getErrorCode()
|
|
{
|
|
return isset($this->details['code']) ? $this->details['code'] : '';
|
|
}
|
|
|
|
public function getErrorMessage()
|
|
{
|
|
return isset($this->details['message']) ? $this->details['message'] : '';
|
|
}
|
|
|
|
public function getDetails()
|
|
{
|
|
return isset($this->details['body']) ? $this->details['body'] : '';
|
|
}
|
|
}
|
|
|