Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
ThisIsNotAFieldException
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2namespace Apie\Serializer\Exceptions;
3
4use Apie\Core\Exceptions\ApieException;
5
6class ThisIsNotAFieldException extends ApieException
7{
8    public function __construct(string $fieldName)
9    {
10        parent::__construct('"' . $fieldName . '" is not a field you can set');
11    }
12}