mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-25 14:08:18 +01:00
d09beeb75c
Summary: I'm pretty sure that `@group` annotations are useless now... I believe that they were originally used by Diviner? Test Plan: Eye-balled it. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin, aurelijus Differential Revision: https://secure.phabricator.com/D9855
19 lines
376 B
PHP
19 lines
376 B
PHP
<?php
|
|
|
|
/**
|
|
* Thrown when a commit message isn't parseable.
|
|
*/
|
|
final class ArcanistDifferentialCommitMessageParserException extends Exception {
|
|
|
|
private $parserErrors;
|
|
|
|
public function __construct(array $errors) {
|
|
$this->parserErrors = $errors;
|
|
parent::__construct(head($errors));
|
|
}
|
|
|
|
public function getParserErrors() {
|
|
return $this->parserErrors;
|
|
}
|
|
|
|
}
|