for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace FRZB\Component\RequestMapper\Exception;
final class ConverterContainerException extends \LogicException
{
public static function fromThrowable(\Throwable $e): self
return new self($e->getMessage(), (int) $e->getCode(), $e);
}