Basic tools to list items in a folder, search for files / folders, and download a file content.
18 lines
567 B
Python
18 lines
567 B
Python
from typing import Optional
|
|
|
|
|
|
class DropboxApiError(Exception):
|
|
def __init__(
|
|
self,
|
|
status_code: int,
|
|
error_summary: str,
|
|
user_message: Optional[str],
|
|
):
|
|
if "path/not_found" in error_summary:
|
|
self.message = "The specified path was not found by Dropbox"
|
|
elif "unsupported_file" in error_summary:
|
|
self.message = "The specified file is not supported for the requested operation"
|
|
else:
|
|
self.message = user_message or error_summary
|
|
|
|
self.status_code = status_code
|