Files
metasploit-gs/lib/rex/exceptions.rb
T

254 lines
3.9 KiB
Ruby
Raw Normal View History

2005-12-17 06:46:23 +00:00
#!/usr/bin/env ruby
2005-06-04 18:55:20 +00:00
module Rex
###
#
# Base mixin for all exceptions that can be thrown from inside Rex.
#
###
module Exception
end
2005-11-02 23:03:02 +00:00
###
#
# This exception is raised when a timeout occurs.
#
###
2005-06-04 18:55:20 +00:00
class TimeoutError < Interrupt
include Exception
2005-06-04 19:45:47 +00:00
def to_s
2005-06-04 20:40:00 +00:00
"Operation timed out."
2005-06-04 19:45:47 +00:00
end
2005-06-04 18:55:20 +00:00
end
2005-11-02 23:03:02 +00:00
###
#
# This exception is raised when a method is called or a feature is used that
# is not implemented.
#
###
2005-06-04 18:55:20 +00:00
class NotImplementedError < ::NotImplementedError
include Exception
2005-06-04 19:45:47 +00:00
def to_s
2005-06-04 20:40:00 +00:00
"The requested method is not implemented."
2005-06-04 19:45:47 +00:00
end
2005-06-04 18:55:20 +00:00
end
2005-11-02 23:03:02 +00:00
###
#
# This exception is raised when a generalized runtime error occurs.
#
###
2005-06-04 20:40:00 +00:00
class RuntimeError < ::RuntimeError
include Exception
2005-06-04 20:40:33 +00:00
end
2005-06-04 20:40:00 +00:00
2005-11-02 23:03:02 +00:00
###
#
# This exception is raised when an invalid argument is supplied to a method.
#
###
2005-06-04 18:55:20 +00:00
class ArgumentError < ::ArgumentError
include Exception
2005-12-13 06:08:40 +00:00
2006-01-27 05:33:08 +00:00
def initialize(message = nil)
2005-12-13 06:08:40 +00:00
@message = message
end
2005-06-04 19:45:47 +00:00
def to_s
2006-01-27 05:33:08 +00:00
str = 'An invalid argument was specified.'
if @message
str += " #{@message}"
end
str
2005-06-04 19:45:47 +00:00
end
end
2005-11-02 23:03:02 +00:00
###
#
# This exception is raised when an argument that was supplied to a method
# could not be parsed correctly.
#
###
2005-07-10 07:27:50 +00:00
class ArgumentParseError < ::ArgumentError
include Exception
def to_s
"The argument could not be parsed correctly."
end
end
2005-11-02 23:03:02 +00:00
###
#
# This exception is raised when an argument is ambiguous.
#
###
2005-07-14 20:05:41 +00:00
class AmbiguousArgumentError < ::RuntimeError
include Exception
2005-09-24 18:39:09 +00:00
def initialize(name = nil)
2005-07-14 20:05:41 +00:00
@name = name
end
def to_s
"The name #{@name} is ambiguous."
end
end
2005-11-02 23:03:02 +00:00
###
2005-09-29 20:18:24 +00:00
#
# This error is thrown when a stream is detected as being closed.
#
2005-11-02 23:03:02 +00:00
###
2005-09-29 20:18:24 +00:00
class StreamClosedError < ::IOError
include Exception
def initialize(stream)
@stream = stream
end
def stream
@stream
end
def to_s
"Stream #{@stream} is closed."
end
end
2005-06-04 19:45:47 +00:00
##
#
# Socket exceptions
#
##
2005-11-02 23:03:02 +00:00
###
#
# This exception is raised when a general socket error occurs.
#
###
2005-06-04 19:45:47 +00:00
module SocketError
include Exception
def to_s
2005-06-04 20:38:49 +00:00
"A socket error occurred."
2005-06-04 19:45:47 +00:00
end
end
2005-06-04 19:56:54 +00:00
###
#
2005-11-02 23:03:02 +00:00
# This exception is raised when there is some kind of error related to
# communication with a host.
2005-06-04 19:56:54 +00:00
#
###
module HostCommunicationError
def initialize(addr = nil, port = nil)
self.host = addr
self.port = port
end
2005-11-02 23:03:02 +00:00
#
# This method returns a printable address and optional port associated
# with the host that triggered the exception.
2005-11-02 23:03:02 +00:00
#
2005-06-04 19:56:54 +00:00
def addr_to_s
if host and port
"(#{host}:#{port})"
elsif host
"(#{host})"
else
""
end
2005-06-04 19:56:54 +00:00
end
attr_accessor :host, :port
end
2005-11-02 23:03:02 +00:00
###
#
# This exception is raised when a connection attempt fails because the remote
# side refused the connection.
#
###
class ConnectionError < ::IOError
2005-06-04 19:45:47 +00:00
include SocketError
2005-06-04 19:56:54 +00:00
include HostCommunicationError
end
2005-06-04 19:45:47 +00:00
###
#
# This exception is raised when a connection attempt fails because the remote
# side refused the connection.
#
###
class ConnectionRefused < ConnectionError
2005-06-04 19:45:47 +00:00
def to_s
"The connection was refused by the remote host #{addr_to_s}."
end
end
###
#
# This exception is raised when a connection attempt fails because the remote
# side is unreachable.
#
###
class HostUnreachable < ConnectionError
def to_s
"The host #{addr_to_s} was unreachable."
2005-06-04 19:45:47 +00:00
end
end
2005-11-02 23:03:02 +00:00
###
#
# This exception is raised when a connection attempt times out.
#
###
class ConnectionTimeout < ConnectionError
2005-06-04 19:56:54 +00:00
def to_s
"The connection timed out #{addr_to_s}."
2005-06-04 19:56:54 +00:00
end
end
2005-11-02 23:03:02 +00:00
###
#
# This exception is raised when an attempt to use an address or port that is
# already in use occurs, such as binding to a host on a given port that is
# already in use.
#
###
2005-06-04 19:56:54 +00:00
class AddressInUse < ::RuntimeError
include SocketError
include HostCommunicationError
2005-06-04 19:45:47 +00:00
def to_s
"The address is already in use #{addr_to_s}."
2005-06-04 19:45:47 +00:00
end
2005-06-04 18:55:20 +00:00
end
2005-11-02 23:03:02 +00:00
###
#
# This exception is raised when an unsupported internet protocol is specified.
#
###
2005-06-04 20:38:49 +00:00
class UnsupportedProtocol < ::ArgumentError
include SocketError
def initialize(proto = nil)
self.proto = proto
end
def to_s
"The protocol #{proto} is not supported."
end
attr_accessor :proto
end
end