mirror of
https://github.com/jazzband/django-downloadview.git
synced 2026-03-16 22:40:25 +00:00
11 lines
267 B
Python
11 lines
267 B
Python
# -*- coding: utf-8 -*-
|
|
"""Custom exceptions."""
|
|
|
|
|
|
class FileNotFound(IOError):
|
|
"""Requested file does not exist.
|
|
|
|
This exception is to be raised when operations (such as read) fail because
|
|
file does not exist (whatever the storage or location).
|
|
|
|
"""
|