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