Krauza/webservice

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Krauza\Core\Exception;

class ValueHasWrongChars extends FieldException
{
    public function __construct($field)
    {
        parent::__construct($field, 'Value has incorrect symbols');
    }
}