1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-06 03:09:43 +00:00

12 lines
208 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class RateLimiter
2013-02-25 19:42:20 +03:00
# A rate limit has been exceeded.
2013-02-05 14:16:51 -05:00
class LimitExceeded < Exception
attr_accessor :available_in
def initialize(available_in)
@available_in = available_in
end
end
2013-02-25 19:42:20 +03:00
end