shellycloud/paylane

View on GitHub
lib/paylane/connection_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
module PayLane
  class ConnectionError < StandardError
    attr_reader :soap_error

    def initialize(soap_error)
      @soap_error = soap_error
    end

    def to_hash
      @soap_error.to_hash
    end
  end
end