]> git.openstreetmap.org Git - rails.git/blobdiff - lib/osm.rb
Merge pull request #4610 from AntonKhorev/no-old-note-api
[rails.git] / lib / osm.rb
index 65eab6907a00ff6008299f28d7d2beb8b674d78c..dd273418e52cc562c95f94b67ef1bba47218f1c3 100644 (file)
@@ -8,7 +8,7 @@ module OSM
   # The base class for API Errors.
   class APIError < RuntimeError
     def initialize(message = "Generic API Error")
   # The base class for API Errors.
   class APIError < RuntimeError
     def initialize(message = "Generic API Error")
-      super(message)
+      super
     end
 
     def status
     end
 
     def status
@@ -364,6 +364,17 @@ module OSM
     end
   end
 
     end
   end
 
+  # Raised when a size limit is exceeded
+  class APISizeLimitExceeded < APIError
+    def initialize
+      super("Size limit exceeded")
+    end
+
+    def status
+      :payload_too_large
+    end
+  end
+
   # Helper methods for going to/from mercator and lat/lng.
   class Mercator
     include Math
   # Helper methods for going to/from mercator and lat/lng.
   class Mercator
     include Math