class Varanus::Error

Error returned from the Sectigo API

Attributes

code[R]

@return [Integer] Code associated with error

Public Class Methods

new(code, msg) click to toggle source
Calls superclass method
# File lib/varanus/error.rb, line 8
def initialize code, msg
  @code = code
  super(msg)
end