Sha256: 311fc5d6a0306392fb9b9dbe98d4f3b461460109af7f201539d4e68319063d5e
Contents?: true
Size: 508 Bytes
Versions: 18
Compression:
Stored size: 508 Bytes
Contents
require_relative 'pantograph_exception' module PantographCore class Interface class PantographError < PantographException attr_reader :show_github_issues attr_reader :error_info def initialize(show_github_issues: false, error_info: nil) @show_github_issues = show_github_issues @error_info = error_info end def prefix '[USER_ERROR]' end end end end class Exception def pantograph_should_report_metrics? return false end end
Version data entries
18 entries across 18 versions & 1 rubygems