Exception: Bade::Renderer::LoadError
- Inherits:
-
Bade::Runtime::RuntimeError
- Object
- StandardError
- Bade::Runtime::RuntimeError
- Bade::Renderer::LoadError
- Defined in:
- lib/bade/renderer.rb
Instance Attribute Summary collapse
- #loading_path ⇒ String readonly
- #reference_path ⇒ String readonly
Attributes inherited from Bade::Runtime::RuntimeError
#print_locations_warning, #template_backtrace
Instance Method Summary collapse
-
#initialize(loading_path, reference_path, msg, template_backtrace = []) ⇒ LoadError
constructor
A new instance of LoadError.
Methods inherited from Bade::Runtime::RuntimeError
#__formatted_backtrace, #cause, process_locations, #to_s, wrap_existing_error
Constructor Details
#initialize(loading_path, reference_path, msg, template_backtrace = []) ⇒ LoadError
Returns a new instance of LoadError.
25 26 27 28 29 |
# File 'lib/bade/renderer.rb', line 25 def initialize(loading_path, reference_path, msg, template_backtrace = []) super(msg, template_backtrace) @loading_path = loading_path @reference_path = reference_path end |