for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DockerCompose\Exception;
use Exception;
/**
* Docker\Exception\ContainerNotFoundException
*/
class NoSuchServiceException extends Exception
{
* @param null|Exception $previous
* @param string $output
public function __construct($output, Exception $previous = null)
parent::__construct(sprintf($output), 404, $previous);
}