mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
8 lines
253 B
Ruby
8 lines
253 B
Ruby
module ActionDispatch
|
|
class ClosedError < StandardError #:nodoc:
|
|
def initialize(kind)
|
|
super "Cannot modify #{kind} because it was closed. This means it was already streamed back to the client or converted to HTTP headers."
|
|
end
|
|
end
|
|
end
|