Krauza/webservice

View on GitHub
src/Core/Exception/ValueIsTooLong.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Krauza\Core\Exception;

class ValueIsTooLong extends FieldException
{
    public function __construct($field)
    {
        parent::__construct($field, 'Value is too long');
    }
}