module Interceptors::DS::Errors

Constants

Error

Private Instance Methods

assert!(item) click to toggle source
# File lib/interceptors/ds/errors.rb, line 10
def assert!(item)
  raise NullValueNotAllowedError, "A value must not be null in the dequeue" if item.nil?
end