From f8632b6a0622b14d5fd5e3954e2fcc2d7ed245bc Mon Sep 17 00:00:00 2001 From: stopflock Date: Wed, 15 Jul 2026 19:39:06 -0500 Subject: [PATCH] remove extraneous unreferenced file --- .../overpass_node_limit_exception.dart | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 lib/services/overpass_node_limit_exception.dart diff --git a/lib/services/overpass_node_limit_exception.dart b/lib/services/overpass_node_limit_exception.dart deleted file mode 100644 index 9df915b..0000000 --- a/lib/services/overpass_node_limit_exception.dart +++ /dev/null @@ -1,23 +0,0 @@ -/// Exception thrown when Overpass API returns an error indicating too many nodes were requested. -/// This typically happens when querying large areas that would return more than 50k nodes. -class OverpassNodeLimitException implements Exception { - final String message; - final String? serverResponse; - - OverpassNodeLimitException(this.message, {this.serverResponse}); - - @override - String toString() => 'OverpassNodeLimitException: $message'; -} - -/// Exception thrown when Overpass API rate limits the request. -/// Should trigger longer backoff delays, not area splitting. -class OverpassRateLimitException implements Exception { - final String message; - final String? serverResponse; - - OverpassRateLimitException(this.message, {this.serverResponse}); - - @override - String toString() => 'OverpassRateLimitException: $message'; -} \ No newline at end of file