Exception: Chelsea::DependencyException

Inherits:
StandardError
  • Object
show all
Defined in:
lib/chelsea/dependency_exception.rb

Overview

Project dependency exception

Instance Method Summary collapse

Constructor Details

#initialize(msg = 'This is a custom exception', exception_type = 'custom') ⇒ DependencyException

Returns a new instance of DependencyException.



22
23
24
25
# File 'lib/chelsea/dependency_exception.rb', line 22

def initialize(msg = 'This is a custom exception', exception_type = 'custom')
  @exception_type = exception_type
  super(msg)
end