Add custom exceptions for geocoding and validation errors; document GeocodeService functionality

This commit is contained in:
pacnpal
2025-02-23 20:38:42 -05:00
parent ac170385cb
commit af4271b0a4
5 changed files with 463 additions and 33 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace App\Exceptions;
use Exception;
class GeocodingException extends Exception
{
// Custom exception for geocoding-related errors
}