for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Larapie\DataTransferObject\Exceptions;
use TypeError;
class PropertyAlreadyExistsException extends TypeError
{
public function __construct(string $property)
$message = "Cannot add $property it's already present on the data value object";
parent::__construct($message);
}