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

View on GitHub
src/Exception/ComposedValue/AnyOfException.php

Summary

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

declare(strict_types = 1);

namespace PHPModelGenerator\Exception\ComposedValue;

/**
 * Class AnyOfException
 *
 * @package PHPModelGenerator\Exception\ComposedValue
 */
class AnyOfException extends InvalidComposedValueException
{
    protected const COMPOSED_ERROR_MESSAGE = 'Requires to match at least one composition element.';
}