class RuneRb::System::Error

A basic error produced by the RuneRb base application.

Attributes

message[R]

Public Class Methods

new(interests = {}, msg = '') click to toggle source
Calls superclass method
# File deployment/app/system/errors.rb, line 9
def initialize(interests = {}, msg = '')
  @message = msg
  err @message, "Raised by: #{RuneRb::GLOBAL[:COLOR].red(interests)}"
  super(msg)
end