wol-soft/php-json-schema-model-generator-production

View on GitHub
src/Exception/Object/InvalidPropertyNamesException.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

declare(strict_types = 1);

namespace PHPModelGenerator\Exception\Object;

/**
 * Class InvalidPropertyNamesException
 *
 * @package PHPModelGenerator\Exception\Object
 */
class InvalidPropertyNamesException extends InvalidAdditionalPropertiesException
{
    protected const MAIN_MESSAGE = 'Provided JSON for %s contains properties with invalid names.';
    protected const TYPE = 'property';
}