Sha256: f9dc0b0a7c9f5fed87a3af37426168c1daa03a0d68b095199180851230a05e1c
Contents?: true
Size: 546 Bytes
Versions: 35
Compression:
Stored size: 546 Bytes
Contents
require 'killbill/plugin' module Killbill module Plugin class PaymentControlPluginApi < Notification class OperationUnsupportedByGatewayError < NotImplementedError end def prior_call(control_context, properties) raise OperationUnsupportedByGatewayError end def on_success_call(control_context, properties) raise OperationUnsupportedByGatewayError end def on_failure_call(control_context, properties) raise OperationUnsupportedByGatewayError end end end end
Version data entries
35 entries across 35 versions & 1 rubygems