This project is closed and read-only.
Bug #2974 ยป httpstatus.patch
| httpstatus.rb 2010-03-16 17:34:28.266111301 +0200 | ||
|---|---|---|
|
module HTTPStatus
|
||
|
class Status < StandardError
|
||
|
def initialize(message=self.class, *rest)
|
||
|
def initialize(message=self.class.reason_phrase, *rest)
|
||
|
super(AccessLog.escape(message), *rest)
|
||
|
end
|
||
|
class << self
|
||