gpt4 book ai didi

ruby-on-rails - 为Stripe::Error (Ruby on rails)创建错误对象

转载 作者:行者123 更新时间:2023-12-03 07:52:46 32 4
gpt4 key购买 nike

我能够创建以下标准错误...

StandardError.new("No such customer: invalid-id")

但是,我想知道如何创建特定的错误,特别是 strip 错误...

https://stripe.com/docs/api/errors/handling
https://github.com/stripe/stripe-ruby/blob/382ae0b45d848304f7c1739696f33458c86bee4f/lib/stripe/errors.rb#L99
Stripe::RateLimitError
Stripe::InvalidRequestError
Stripe::AuthenticationError
Stripe::InvalidRequestError
Stripe::StripeError

产生这些错误的最佳方法是什么?我用来传递给我的模拟Api库。我找到了这个...

https://github.com/stripe/stripe-ruby/blob/master/test/stripe/errors_test.rb

我试过了... Stripe::InvalidRequestError.new('this is a test'),但出现ArgumentError(参数数量错误(给定1,预期为2))。

所需的第二个参数是什么?

最佳答案

您可以在此处找到“ strip 错误”的最新方法定义:https://github.com/stripe/stripe-ruby/blob/ec91de6849f34d8d6701a6e91a1b2ee0d50c21ea/lib/stripe/errors.rb

这是Stripe::InvalidRequestError的方法定义

class InvalidRequestError < StripeError
attr_accessor :param

def initialize(message, param, http_status: nil, http_body: nil,
json_body: nil, http_headers: nil, code: nil)
super(message, http_status: http_status, http_body: http_body,
json_body: json_body, http_headers: http_headers,
code: code)
@param = param
end
end

因此,为回答您的问题,第二个参数是 param参数。
通常,这似乎代表 strip 资源。

例如,如果我想创建一个InvalidRequestError试图做与 Stripe::Plan类相关的事情,我将使用以下代码:
Stripe::InvalidRequestError.new('No such plan: test_plan', 'plan')

希望有帮助!

关于ruby-on-rails - 为Stripe::Error (Ruby on rails)创建错误对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57060390/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com