class UnsupportedKeywordException
Hierarchy
- class \SlevomatCodingStandard\Sniffs\ControlStructures\UnsupportedKeywordException extends \Exception
Expanded class hierarchy of UnsupportedKeywordException
File
-
vendor/
slevomat/ coding-standard/ SlevomatCodingStandard/ Sniffs/ ControlStructures/ UnsupportedKeywordException.php, line 9
Namespace
SlevomatCodingStandard\Sniffs\ControlStructuresView source
class UnsupportedKeywordException extends Exception {
public function __construct(string $keyword, ?Throwable $previous = null) {
parent::__construct(sprintf('"%s" is not supported.', $keyword), 0, $previous);
}
}