for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Feed\Exceptions;
use Exception;
class InvalidConfiguration extends Exception
{
public static function delimiterNotPresent($configValue)
return new static("Could not find delimeter '@' in `{$configValue}`");
}