jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1318197?usp=email )
Change subject: exceptions: replace tree markers with Unicode box-drawing characters ......................................................................
exceptions: replace tree markers with Unicode box-drawing characters
Change-Id: Iee612b8f7366f21a266448a56ae25455d77140af --- M pywikibot/exceptions.py 1 file changed, 60 insertions(+), 60 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/pywikibot/exceptions.py b/pywikibot/exceptions.py index 9fdb2b4..9cd75cb 100644 --- a/pywikibot/exceptions.py +++ b/pywikibot/exceptions.py @@ -9,70 +9,70 @@ the framework::
Exception - +-- Error - +-- APIError - | +-- APIMWError - | +-- UploadError - +-- AutoblockUserError - +-- CaptchaError - +-- ClientError - | +-- Client414Error - +-- InvalidTitleError - +-- NoUsernameError - +-- PageInUseError - +-- PageRelatedError - | +-- CircularRedirectError - | +-- InterwikiRedirectPageError - | +-- IsNotRedirectPageError - | +-- IsRedirectPageError - | +-- NoMoveTargetError - | +-- NoPageError - | +-- NoRenameTargetError - | +-- NotEmailableError - | +-- PageLoadRelatedError - | | +-- InconsistentTitleError - | | +-- InvalidPageError - | | +-- NoSiteLinkError - | +-- PageSaveRelatedError - | | +-- EditConflictError - | | | +-- ArticleExistsConflictError - | | | +-- PageCreatedConflictError - | | | +-- PageDeletedConflictError - | | +-- LockedPageError - | | | +-- LockedNoPageError - | | | +-- CascadeLockedPageError - | | +-- NoCreateError - | | +-- OtherPageSaveError - | | +-- SpamblacklistError - | | +-- TitleblacklistError - | | +-- AbuseFilterDisallowedError - | +-- UnsupportedPageError - +-- SectionError - +-- ServerError - | +-- FatalServerError - | +-- Server504Error - +-- SiteDefinitionError - | +-- UnknownFamilyError - | +-- UnknownSiteError - +-- ApiTimeoutError - | +-- MaxlagTimeoutError - +-- TranslationError - +-- UnexpectedAPIDataError (ValueError) - +-- UnknownExtensionError (NotImplementedError) - +-- UserRightsError - | +-- HiddenKeyError (KeyError) - +-- VersionParseError - +-- WikiBaseError - +-- CoordinateGlobeUnknownError (NotImplementedError) - +-- EntityTypeUnknownError - +-- NoWikibaseEntityError + └── Error + ├── APIError + | ├── APIMWError + | └── UploadError + ├── AutoblockUserError + ├── CaptchaError + ├── ClientError + | └── Client414Error + ├── InvalidTitleError + ├── NoUsernameError + ├── PageInUseError + ├── PageRelatedError + | ├── CircularRedirectError + | ├── InterwikiRedirectPageError + | ├── IsNotRedirectPageError + | ├── IsRedirectPageError + | ├── NoMoveTargetError + | ├── NoPageError + | ├── NoRenameTargetError + | ├── NotEmailableError + | ├── PageLoadRelatedError + | | ├── InconsistentTitleError + | | ├── InvalidPageError + | | └── NoSiteLinkError + | ├── PageSaveRelatedError + | | ├── EditConflictError + | | | ├── ArticleExistsConflictError + | | | ├── PageCreatedConflictError + | | | └── PageDeletedConflictError + | | ├── LockedPageError + | | | ├── LockedNoPageError + | | | └── CascadeLockedPageError + | | ├── NoCreateError + | | ├── OtherPageSaveError + | | ├── SpamblacklistError + | | ├── TitleblacklistError + | | └── AbuseFilterDisallowedError + | └── UnsupportedPageError + ├── SectionError + ├── ServerError + | ├── FatalServerError + | └── Server504Error + ├── SiteDefinitionError + | ├── UnknownFamilyError + | └── UnknownSiteError + ├── ApiTimeoutError + | └── MaxlagTimeoutError + ├── TranslationError + ├── UnexpectedAPIDataError (ValueError) + ├── UnknownExtensionError (NotImplementedError) + ├── UserRightsError + | └── HiddenKeyError (KeyError) + ├── VersionParseError + └── WikiBaseError + ├── CoordinateGlobeUnknownError (NotImplementedError) + ├── EntityTypeUnknownError + └── NoWikibaseEntityError
UserWarning - +-- ArgumentDeprecationWarning (FutureWarning) - +-- FamilyMaintenanceWarning + ├── ArgumentDeprecationWarning (FutureWarning) + └── FamilyMaintenanceWarning
RuntimeWarning - +-- NotImplementedWarning + └── NotImplementedWarning
Error: Base class, all exceptions should the subclass of this class.
pywikibot-commits@lists.wikimedia.org