for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare( strict_types = 1 );
namespace WMDE\Fundraising\AddressChange\UseCases\ChangeAddress;
class ChangeAddressValidationException extends \Exception {
public function __construct( string $field ) {
parent::__construct(
sprintf( 'Invalid value for field "%s".', $field )
);
}