Lines Matching defs:code
8 * The code is used as exit code for the CLI tool. This should probably be extended. Many cases just fall back to the
9 * E_ANY code.
16 const E_ANY = -1; // no error code specified
25 * @param int $code The Exception code
28 public function __construct($message = "", $code = 0, \Exception $previous = null)
30 if (!$code) {
31 $code = self::E_ANY;
33 parent::__construct($message, $code, $previous);