Use function getConcordanceTarget() over direct array access
This commit is contained in:
18
exceptions/MDImporterMissingConcordance.php
Normal file
18
exceptions/MDImporterMissingConcordance.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
|
||||
/**
|
||||
* Exception thrown in case an update failed.
|
||||
*/
|
||||
final class MDImporterMissingConcordance extends Exception {
|
||||
/**
|
||||
* Error message.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function errorMessage() {
|
||||
//error message
|
||||
return 'No matching entry in concordance list.';
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user