class Backblaze::DestroyErrors

Errors destroying file versions

Public Class Methods

new(errors) click to toggle source

Creates the Error @param [Array<Backblaze::FileError>] errors errors raised destroying files

# File lib/backblaze/errors.rb, line 62
def initialize(errors)
  @errors = errors
end

Public Instance Methods

errors() click to toggle source

The Backblaze B2 error messages which broke things @return [Array<Backblaze::FileError>] errors errors raised destroying files

# File lib/backblaze/errors.rb, line 69
def errors
  @errors
end