Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
django-filter / exceptions.py
Size: Mime:

from django.core.exceptions import FieldError


class FieldLookupError(FieldError):
    def __init__(self, model_field, lookup_expr):
        super(FieldLookupError, self).__init__(
            "Unsupported lookup '%s' for field '%s'." % (lookup_expr, model_field)
        )