Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / jakub-onderka / php-console-color / src / InvalidStyleException.php
1 <?php
2 namespace JakubOnderka\PhpConsoleColor;
3
4 class InvalidStyleException extends \Exception
5 {
6     public function __construct($styleName)
7     {
8         parent::__construct("Invalid style $styleName.");
9     }
10 }