Exception: Chelsea::DependencyException
- Inherits:
-
StandardError
- Object
- StandardError
- Chelsea::DependencyException
- Defined in:
- lib/chelsea/dependency_exception.rb
Overview
Project dependency exception
Instance Method Summary collapse
-
#initialize(msg = 'This is a custom exception', exception_type = 'custom') ⇒ DependencyException
constructor
A new instance of DependencyException.
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 |