Krauza/webservice

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Krauza\Core\Exception;

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