class RubyBreaker::Errors::InternalError

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.

Public Class Methods

new(msg) click to toggle source
Calls superclass method
# File lib/rubybreaker/debug/error.rb, line 15
def initialize(msg)
  @level = :FATAL if @level == nil 
  msg = "[#{@level}] #{msg} at #{@pos}" 
  super(msg)
end