mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
e4e56bb431
Summary: If someone typos one name in a cc or reviewer list, it would be nice if we display all of the valid names in the field when running arc diff (in addition to the error message). Test Plan: used the conduit console to check that calling differential.parsecommitmessage with a list of some valid and some invalid ccs returns a result with both an error and a list of some ccs. Also ran arc diff with that list of ccs to check for the correct user experience. Reviewers: epriestley, jungejason, vrana Reviewed By: epriestley CC: aran, Koolvin Differential Revision: https://secure.phabricator.com/D2542
31 lines
918 B
PHP
31 lines
918 B
PHP
<?php
|
|
|
|
/*
|
|
* Copyright 2012 Facebook, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
final class DifferentialFieldParseException extends Exception {
|
|
|
|
private $partialParse;
|
|
|
|
public function __construct($message, $partial_parse = null) {
|
|
parent::__construct($message);
|
|
$this->partialParse = $partial_parse;
|
|
}
|
|
|
|
public function getPartialParse() {
|
|
return $this->partialParse;
|
|
}
|
|
}
|