* (c) Francis Besset * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace BeSimple\SoapBundle\Handler; use BeSimple\SoapServer\Exception\ReceiverSoapFault; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKernel\Exception\FlattenException; /** * @author Francis Besset */ class ExceptionHandler { protected $exception; protected $details; protected $soapFault; public function __construct(FlattenException $exception, $details = null) { $this->exception = $exception; $this->details = $details; } public function setSoapFault(\SoapFault $soapFault) { $this->soapFault = $soapFault; } public function __call($method, $arguments) { if (isset($this->soapFault)) { throw $this->soapFault; } $code = $this->exception->getStatusCode(); throw new ReceiverSoapFault( isset(Response::$statusTexts[$code]) ? Response::$statusTexts[$code] : '', null, $this->details ); } }