class Rbeapi::Eapilib::EapiError
Base error class for generating exceptions. The EapiError
class
Attributes
commands[RW]
Public Instance Methods
initalize(message)
click to toggle source
The EapiError
class provides one property for holding the set of commands issued when the error was generated.
@param message [String] The error message to return from raising
the exception.
Calls superclass method
# File lib/rbeapi/eapilib.rb, line 63 def initalize(message) @message = message @commands = nil super(message) end