class PantographCore::Interface::PantographError

Attributes

error_info[R]
show_github_issues[R]

Public Class Methods

new(show_github_issues: false, error_info: nil) click to toggle source
# File pantograph_core/lib/pantograph_core/ui/errors/pantograph_error.rb, line 9
def initialize(show_github_issues: false, error_info: nil)
  @show_github_issues = show_github_issues
  @error_info = error_info
end

Public Instance Methods

prefix() click to toggle source
# File pantograph_core/lib/pantograph_core/ui/errors/pantograph_error.rb, line 14
def prefix
  '[USER_ERROR]'
end