for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Larapie\DataTransferObject\Exceptions;
use RuntimeException;
class ImmutablePropertyDtoException extends RuntimeException
{
public function __construct(string $property)
parent::__construct("Cannot change the value of property '{$property}'. It is immutable!");
}