Exception: Ibex::Fix::BudgetExceeded

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

Overview

Signature:

  • String

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(details) ⇒ BudgetExceeded

Returns a new instance of BudgetExceeded.

RBS:

  • (Hash[Symbol, Object?] details) -> void

Parameters:

  • details (Hash[Symbol, Object?])


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

#detailsHash[Symbol, Object?] (readonly)

Signature:

  • Hash[Symbol, Object?]

Returns:

  • (Hash[Symbol, Object?])


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

def details
  @details
end