Method: EnergyPlus::EpErrFile#initialize

Defined in:
lib/energyplus/EpErrFile.rb

#initialize(path) ⇒ EpErrFile

Returns a new instance of EpErrFile.



24
25
26
27
28
29
30
31
# File 'lib/energyplus/EpErrFile.rb', line 24

def initialize(path)
  @path = path.expand_path
  @warnings = []
  @severe_errors = []
  @fatal_errors = []
  @initialized = false
  @successful = false
end