module Resque::Failure

def self.all(offset = 0, limit = 1, queue = nil)

number of items to return.
`offset` is the int of the first item in the page, `limit` is the

Returns an array of all the failures, paginated.
def self.all(offset = 0, limit = 1, queue = nil)
  backend.all(offset, limit, queue)
end