for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace John\Exceptions;
use Exception;
/**
* WorkRank Manager Exceptions.
*
*/
class WordRankManagerException extends Exception
{
protected $message;
* Capture thrown [errorMessage]
* @return [string] [Return caught error]
[string]
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.
public function __construct($message)
$this->message = $message;
}
* Return thrown error message
* @return string error message
public function errorMessage()
return $this->message;
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.