Exception: Ibex::Fix::BudgetExceeded

Inherits:
Error
  • Object
show all
Defined in:
lib/ibex/fix.rb

Overview

: String

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(details) ⇒ BudgetExceeded

Returns a new instance of BudgetExceeded.



27
28
29
30
# File 'lib/ibex/fix.rb', line 27

def initialize(details)
  @details = IR.deep_freeze(details)
  super("(fix):1:1: candidate or build budget was exhausted")
end

Instance Attribute Details

#detailsObject (readonly)

: Hash[Symbol, Object?]



24
25
26
# File 'lib/ibex/fix.rb', line 24

def details
  @details
end