for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tgallice\Wit\Exception;
class InvalidStepException extends \RuntimeException
{
/**
* @var mixed
*/
private $stepData;
* @param string $message
* @param mixed $stepData
public function __construct($message, $stepData = null)
parent::__construct($message);
$this->stepData = $stepData;
}
* @return mixed
public function getStepData()
return $this->stepData;