-
-
Save shivanshs9/46b4b93ccfdd86c91de1702b29ff60b4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from drf_problems.utils import register | |
@register | |
class InvalidVersionRequestedException(exceptions.NotAcceptable): | |
default_code = 'invalid_version' | |
title = 'Invalid API version' | |
default_detail = 'Provided API version is invalid.') | |
description = 'Malformed or unsupported version string is provided with the request.' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment