mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
11 lines
No EOL
208 B
Ruby
11 lines
No EOL
208 B
Ruby
class RateLimiter
|
|
|
|
# A rate limit has been exceeded.
|
|
class LimitExceeded < Exception
|
|
attr_accessor :available_in
|
|
def initialize(available_in)
|
|
@available_in = available_in
|
|
end
|
|
end
|
|
|
|
end |