swaggest/php-json-schema

View on GitHub
src/Exception/ObjectException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Swaggest\JsonSchema\Exception;

use Swaggest\JsonSchema\InvalidValue;

class ObjectException extends InvalidValue
{
    const REQUIRED = 1;
    const TOO_MANY = 2;
    const TOO_FEW = 3;
    const DEPENDENCY_MISSING = 4;

}