3fab41d1303e1acb44c4fb658bd73e9bbdccf512
[yaffs-website] / 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 }