namespace App\Exceptions;
class NotFoundException extends \RuntimeException {
public static function forPost(int $id): static {
return new static("Post #" . $id . " not found", 404);
}
}
// Throw
throw NotFoundException::forPost($id);