summaryrefslogtreecommitdiff
path: root/adblock/adblock.pyi
diff options
context:
space:
mode:
authordm <dm@work-pc>2022-02-18 11:05:22 +0800
committerÁrni Dagur <arni@dagur.eu>2022-02-26 22:06:53 +0100
commit71210038c16fefbf741d573a29334db08271b4b6 (patch)
tree5e8f99474fd5b0ff5944d5e7b9725a8865f20935 /adblock/adblock.pyi
parent64c1fa2c91b55a35eceeffab6e0715374a5a7231 (diff)
refactor: AddResourceException inheritance relationship && RustBlockerResult implementations
Diffstat (limited to 'adblock/adblock.pyi')
-rw-r--r--adblock/adblock.pyi8
1 files changed, 7 insertions, 1 deletions
diff --git a/adblock/adblock.pyi b/adblock/adblock.pyi
index 4ed340c..9fae1da 100644
--- a/adblock/adblock.pyi
+++ b/adblock/adblock.pyi
@@ -21,7 +21,13 @@ class BadFilterAddUnsupported(BlockerException):
21class FilterExists(BlockerException): 21class FilterExists(BlockerException):
22 pass 22 pass
23 23
24class AddResourceError(BlockerException): 24class AddResourceException(AdblockException):
25 pass
26
27class InvalidUtf8ContentError(AddResourceException):
28 pass
29
30class InvalidBase64ContentError(AddResourceException):
25 pass 31 pass
26 32
27class BlockerResult: 33class BlockerResult: