class Awestruct::ExceptionHelper

Constants

EXITCODES

Public Class Methods

build_failed?() click to toggle source
# File lib/awestruct/util/exception_helper.rb, line 31
def self.build_failed?
  return @@failed
end
html_error_report(exception, relative_source_path) click to toggle source
# File lib/awestruct/util/exception_helper.rb, line 35
    def self.html_error_report exception, relative_source_path
      mark_failed
      "<h1>#{exception.message}</h1>
<h2>Rendering file #{relative_source_path} resulted in a failure.</h2>
<p>Line: #{(exception.respond_to? :line) ? exception.line : 'unknown'}</p>
<p>Backtrace:</p>
<pre>#{exception.backtrace.join "\n"}</pre>"
    end
log_backtrace(exception) click to toggle source
# File lib/awestruct/util/exception_helper.rb, line 17
def self.log_backtrace exception
  $LOG.error "#{exception.backtrace.join("\n")}"
end
log_building_error(exception, relative_source_path) click to toggle source
# File lib/awestruct/util/exception_helper.rb, line 21
def self.log_building_error exception, relative_source_path
  $LOG.error "While processing file #{relative_source_path}"
  self.log_error exception
  self.log_backtrace exception
end
log_error(exception) click to toggle source
# File lib/awestruct/util/exception_helper.rb, line 12
def self.log_error exception
  mark_failed
  $LOG.error "An error occurred: #{exception.message}"
end
log_message(message) click to toggle source
# File lib/awestruct/util/exception_helper.rb, line 8
def self.log_message message
  $LOG.error message
end
mark_failed() click to toggle source
# File lib/awestruct/util/exception_helper.rb, line 27
def self.mark_failed
  @@failed = true
end