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