This class is a base class for any internal errors. It should be used to inform the faults within the program and not related to user programs.
# File lib/rubybreaker/debug/error.rb, line 15 def initialize(msg) @level = :FATAL if @level == nil msg = "[#{@level}] #{msg} at #{@pos}" super(msg) end