mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
basic downloading for scan_binary signatures
This commit is contained in:
parent
82355b8559
commit
f56b1f3012
5 changed files with 351 additions and 62 deletions
|
@ -45,3 +45,10 @@ class BuildException(FDroidException):
|
|||
|
||||
class VerificationException(FDroidException):
|
||||
pass
|
||||
|
||||
|
||||
class ConfigurationException(FDroidException):
|
||||
def __init__(self, value=None, detail=None):
|
||||
super().__init__()
|
||||
self.value = value
|
||||
self.detail = detail
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue