for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MaksimM\MultiUnitModels\Exceptions;
use Throwable;
class NotSupportedMultiUnitField extends \Exception
{
public function __construct($field, $code = 0, Throwable $previous = null)
parent::__construct('Requested field "'.$field.'" is not multi-unit field', $code, $previous);
}