glebm/order_query

View on GitHub
lib/order_query/errors.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module OrderQuery
  # All the exceptions that can be raised by order query methods.
  module Errors
    # Raised when a column that OrderQuery assumes to never contain NULLs
    # contains a null.
    class NonNullableColumnIsNullError < RuntimeError
    end
  end
end