for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <[email protected]>
* Dariusz Rumiński <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Etrias\PaazlConnector\Exceptions;
use Exception;
use Phpro\SoapClient\Type\RequestInterface;
use Phpro\SoapClient\Type\ResultInterface;
class PaazlException extends Exception
{
/** @var RequestInterface|null */
protected $request = null;
/** @var ResultInterface|null */
protected $response = null;
/**
* @return null|RequestInterface
public function getRequest()
return $this->request;
}
* @param null|RequestInterface $request
* @return PaazlException
public function setRequest($request)
$this->request = $request;
return $this;
* @return null|ResultInterface
public function getResponse()
return $this->response;
* @param null|ResultInterface $response
public function setResponse($response)
$this->response = $response;