jwkoelewijn/batsir

View on GitHub
lib/batsir/errors.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Batsir
  module Errors

    class BatsirError < RuntimeError; end
    class NotifierError < BatsirError; end
    class TransformError < BatsirError; end
    class StrategyError < BatsirError; end

    class ExecuteMethodNotImplementedError < BatsirError; end

    class NotifierConnectionError < NotifierError; end

    class JSONInputTransformError < TransformError; end
    class JSONOutputTransformError < TransformError; end

    class RetryStrategyFailed < StrategyError; end
  end
end