lib/leo/errors.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Leo
  # LeoError is the base error class that all other errors classes derive
  class LeoError < StandardError
  end

  class MethodNotImplementedError < LeoError
  end

  class SourceNotAvailableError < LeoError
  end

  class InvalidSourceTypeError < LeoError
  end
end