Class: CLI::Kit::ErrorHandler::ExceptionReporter Abstract

Inherits:
Object
  • Object
show all
Defined in:
lib/cli/kit/error_handler.rb

Overview

This class is abstract.

Direct Known Subclasses

NullExceptionReporter

Class Method Summary collapse

Class Method Details

.report(exception, logs = nil) ⇒ Object

This method is abstract.

: (Exception?, ?String?) -> void

Raises:

  • (NotImplementedError)


27
28
29
# File 'lib/cli/kit/error_handler.rb', line 27

def report(exception, logs = nil)
  raise(NotImplementedError)
end