Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / output-formatters / src / Exception / UnknownFieldException.php
1 <?php
2 namespace Consolidation\OutputFormatters\Exception;
3
4 /**
5  * Indicates that the requested format does not exist.
6  */
7 class UnknownFieldException extends \Exception
8 {
9     public function __construct($field)
10     {
11         $message = "The requested field, '$field', is not defined.";
12         parent::__construct($message, 1);
13     }
14 }