mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
436 B
19 lines
436 B
#
|
|
# System call error module used by webrick for cross platform compatibility.
|
|
#
|
|
# EPROTO:: protocol error
|
|
# ECONNRESET:: remote host reset the connection request
|
|
# ECONNABORTED:: Client sent TCP reset (RST) before server has accepted the
|
|
# connection requested by client.
|
|
#
|
|
module Errno
|
|
class EPROTO < SystemCallError
|
|
end
|
|
|
|
class ECONNRESET < SystemCallError
|
|
end
|
|
|
|
class ECONNABORTED < SystemCallError
|
|
end
|
|
end
|