Exception: BaseError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/require_smasher/errors/base_error.rb

Overview

Define base class for handle errors

Direct Known Subclasses

NotExistError, NotInformedError, RequireFileError

Instance Method Summary collapse

Constructor Details

#initialize(message) ⇒ BaseError

Returns a new instance of BaseError.



6
7
8
# File 'lib/require_smasher/errors/base_error.rb', line 6

def initialize(message)
  super(message)
end