Exception: Certynix::ConflictError

Inherits:
Error
  • Object
show all
Defined in:
lib/certynix/errors.rb

Overview

HTTP 409

Instance Attribute Summary

Attributes inherited from Error

#code, #request_id, #status_code

Instance Method Summary collapse

Constructor Details

#initialize(message:, code:, request_id: nil) ⇒ ConflictError

Returns a new instance of ConflictError.



46
47
48
# File 'lib/certynix/errors.rb', line 46

def initialize(message:, code:, request_id: nil)
  super(message: message, code: code, request_id: request_id, status_code: 409)
end