LdapTools\Log\LogOperation::getError PHP Method

getError() public method

The error/exception message if the operation encountered issues.
public getError ( ) : null | string
return null | string
    public function getError()
    {
        return $this->error;
    }

Usage Example

 /**
  * {@inheritdoc}
  */
 public function end(LogOperation $operation)
 {
     if (!is_null($operation->getError())) {
         $this->errors[] = $operation;
     }
 }
All Usage Examples Of LdapTools\Log\LogOperation::getError