diff options
| author | dm <dm@work-pc> | 2022-02-18 11:05:22 +0800 |
|---|---|---|
| committer | Árni Dagur <arni@dagur.eu> | 2022-02-26 22:06:53 +0100 |
| commit | 71210038c16fefbf741d573a29334db08271b4b6 (patch) | |
| tree | 5e8f99474fd5b0ff5944d5e7b9725a8865f20935 /adblock/adblock.pyi | |
| parent | 64c1fa2c91b55a35eceeffab6e0715374a5a7231 (diff) | |
refactor: AddResourceException inheritance relationship && RustBlockerResult implementations
Diffstat (limited to 'adblock/adblock.pyi')
| -rw-r--r-- | adblock/adblock.pyi | 8 |
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): | |||
| 21 | class FilterExists(BlockerException): | 21 | class FilterExists(BlockerException): |
| 22 | pass | 22 | pass |
| 23 | 23 | ||
| 24 | class AddResourceError(BlockerException): | 24 | class AddResourceException(AdblockException): |
| 25 | pass | ||
| 26 | |||
| 27 | class InvalidUtf8ContentError(AddResourceException): | ||
| 28 | pass | ||
| 29 | |||
| 30 | class InvalidBase64ContentError(AddResourceException): | ||
| 25 | pass | 31 | pass |
| 26 | 32 | ||
| 27 | class BlockerResult: | 33 | class BlockerResult: |
