Sha256: 9cd6eb35a39def389bd6b6e3d42a5c61daba35b8d98222b575928f023283fddf
Contents?: true
Size: 398 Bytes
Versions: 54
Compression:
Stored size: 398 Bytes
Contents
# frozen_string_literal: true module Diffend module HandleErrors # Module responsible for displaying exception payload to stdout module DisplayToStdout class << self # Display exception payload to stdout # # @param exception_payload [Hash] def call(exception_payload) puts exception_payload.to_json end end end end end
Version data entries
54 entries across 54 versions & 2 rubygems