Source code for geonode.upload.api.exceptions

#########################################################################
#
# Copyright (C) 2022 OSGeo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#########################################################################
from rest_framework import status
from rest_framework.exceptions import APIException
from django.utils.translation import ugettext_lazy as _


[docs] class GeneralUploadException(APIException):
[docs] status_code = status.HTTP_500_INTERNAL_SERVER_ERROR
[docs] default_detail = "Exception during resource upload"
[docs] default_code = "upload_exception"
[docs] category = "upload"
[docs] class FileUploadLimitException(APIException):
[docs] status_code = status.HTTP_400_BAD_REQUEST
[docs] default_detail = _("Total upload size exceeded. Please try again with smaller files.")
[docs] default_code = "total_upload_size_exceeded"
[docs] category = "upload"
[docs] class UploadParallelismLimitException(APIException):
[docs] status_code = status.HTTP_400_BAD_REQUEST
[docs] default_detail = _("The number of active parallel uploads exceeds. Wait for the pending ones to finish.")
[docs] default_code = "upload_parallelism_limit_exceeded"
[docs] category = "upload"