Scientist\Result::getException PHP Method

getException() public method

Get the exception thrown by the callback.
public getException ( ) : Exceptio\Exception | null
return Exceptio\Exception | null
    public function getException()
    {
        return $this->exception;
    }

Usage Example

Example #1
0
 public function test_result_can_have_exception()
 {
     $r = new Result();
     $r->setException(new Exception());
     $this->assertInstanceOf('\\Exception', $r->getException());
 }