Sha256: 22528bb40f4d9700aaad38f7dbbe58fc3547f40b4d6232b5b09361fcdb154ba6
Contents?: true
Size: 1.75 KB
Versions: 1
Compression:
Stored size: 1.75 KB
Contents
# frozen_string_literal: true module Micro class Case module Error class UnexpectedResult < TypeError MESSAGE = 'must return an instance of Micro::Case::Result'.freeze def initialize(context) super("#{context} #{MESSAGE}") end end class ResultIsAlreadyDefined < ArgumentError def initialize; super('result is already defined'.freeze); end end class InvalidResultType < TypeError def initialize; super('type must be a Symbol'.freeze); end end class InvalidResult < TypeError def initialize(is_success, type, use_case) base = "The result returned from #{use_case.class.name}#call! must be a Hash." result = is_success ? 'Success'.freeze : 'Failure'.freeze example = if type === :ok || type === :error || type === :exception "#{result}(result: { key: 'value' })" else "#{result}(:#{type}, result: { key: 'value' })" end super("#{base}\n\nExample:\n #{example}") end end class InvalidResultInstance < ArgumentError def initialize; super('argument must be an instance of Micro::Case::Result'.freeze); end end class InvalidUseCase < TypeError def initialize; super('use case must be a kind or an instance of Micro::Case'.freeze); end end class InvalidInvocationOfTheThenMethod < StandardError def initialize(class_name) super("Invalid invocation of the #{class_name}#then method") end end def self.by_wrong_usage?(exception) exception.is_a?(InvalidResult) || exception.is_a?(UnexpectedResult) || exception.is_a?(ArgumentError) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
u-case-3.0.0 | lib/micro/case/error.rb |