Method: PostDB::DKIMError#initialize

Defined in:
lib/postdb/errors/dkim.rb

#initialize(suberror = nil, *args) ⇒ DKIMError

Example:

>> raise PostDB::DKIMError.new
=> #<PostDB::DKIMError:0x00000000000000>


23
24
25
26
27
28
29
# File 'lib/postdb/errors/dkim.rb', line 23

def initialize(suberror = nil, *args)
  # Store the suberror property (if provided)
  @suberror = suberror if suberror

   # Store the arguments
   @arguments = args
end