for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\PersonalDataExport\Exceptions;
use Exception;
class CouldNotAddToPersonalDataSelection extends Exception
{
public static function fileAlreadyAddedToPersonalDataSelection(string $path)
return new static("Could not add `{$path}` because it already exists.");
}