Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

Latest commit

 

History

History
15 lines (12 loc) · 235 Bytes

error_reporting.md

File metadata and controls

15 lines (12 loc) · 235 Bytes

Error Reporting

A simple method to make sure that errors get reported.

Code Block: Report Self Test Failure
def self.report_self_test_failure(message)
  if @dev
    p message
  else
    throw message
  end
end