class UniversaTools::CodeException

Attributes

code[R]

Public Class Methods

new(code, text = nil) click to toggle source
Calls superclass method
# File lib/universa_tools/errors.rb, line 9
def initialize code, text = nil
  text ||= code
  @code = code
  super(text)
end