for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Chuckcms\Addresses\Exceptions;
use InvalidArgumentException;
class AddressDoesNotExist extends InvalidArgumentException
{
public static function withId(int $addressId)
return new static("There is no address with id `{$addressId}`.");
}