module PeepShow::Exceptions

Public Class Methods

included(base) click to toggle source
# File lib/peep-show/exceptions.rb, line 2
def self.included(base)
  require_relative 'exceptions/base'
  require_relative 'exceptions/standard_error'

  ::StandardError.include(PeepShow::Exceptions::StandardError)
end