%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/vendor/async-aws/core/src/AwsError/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/vendor/async-aws/core/src/AwsError/AwsError.php |
<?php
namespace AsyncAws\Core\AwsError;
/**
* @internal
*/
final class AwsError
{
private $code;
private $message;
private $type;
private $detail;
public function __construct(?string $code, ?string $message, ?string $type, ?string $detail)
{
$this->code = $code;
$this->message = $message;
$this->type = $type;
$this->detail = $detail;
}
public function getCode(): ?string
{
return $this->code;
}
public function getMessage(): ?string
{
return $this->message;
}
public function getType(): ?string
{
return $this->type;
}
public function getDetail(): ?string
{
return $this->detail;
}
}