class Chelsea::DependencyException
Project dependency exception
Public Class Methods
new(msg = 'This is a custom exception', exception_type = 'custom')
click to toggle source
Calls superclass method
# 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