for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Gerard van Helden <[email protected]>
* @copyright Zicht Online <http://zicht.nl>
*/
namespace Zicht\Tool\Container;
use Symfony\Component\Console\Output\OutputInterface;
* Thrown whenever a command exits with an 'abort' exit code.
class ExecutionAbortedException extends \RuntimeException implements VerboseException
{
* @{inheritDoc}
public function output(OutputInterface $output)
$output->writeln('<comment>Aborted</comment>');
if ($output->getVerbosity() > OutputInterface::VERBOSITY_NORMAL) {
$output->writeln($this->getMessage());
}