Mercurial > hg > isophonics-drupal-site
comparison vendor/psy/psysh/src/Exception/BreakException.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 5fb285c0d0e3 |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
22 * {@inheritdoc} | 22 * {@inheritdoc} |
23 */ | 23 */ |
24 public function __construct($message = '', $code = 0, \Exception $previous = null) | 24 public function __construct($message = '', $code = 0, \Exception $previous = null) |
25 { | 25 { |
26 $this->rawMessage = $message; | 26 $this->rawMessage = $message; |
27 parent::__construct(sprintf('Exit: %s', $message), $code, $previous); | 27 parent::__construct(\sprintf('Exit: %s', $message), $code, $previous); |
28 } | 28 } |
29 | 29 |
30 /** | 30 /** |
31 * Return a raw (unformatted) version of the error message. | 31 * Return a raw (unformatted) version of the error message. |
32 * | 32 * |