Exception: Lhj::Interface::LhjException
- Inherits:
-
StandardError
- Object
- StandardError
- Lhj::Interface::LhjException
show all
- Defined in:
- lib/lhj/ui/errors/lhj_exception.rb
Instance Method Summary
collapse
Instance Method Details
#caused_by_calling_ui_method?(method_name: nil) ⇒ Boolean
8
9
10
11
12
13
14
15
16
|
# File 'lib/lhj/ui/errors/lhj_exception.rb', line 8
def caused_by_calling_ui_method?(method_name: nil)
return false if backtrace.nil? || backtrace[0].nil? || method_name.nil?
first_frame = backtrace[0]
if first_frame.include?(method_name) && first_frame.include?('interface.rb')
true
else
false
end
end
|
#prefix ⇒ Object
4
5
6
|
# File 'lib/lhj/ui/errors/lhj_exception.rb', line 4
def prefix
'[LHJ_EXCEPTION]'
end
|