Package lib :: Package common :: Module exceptions
[hide private]
[frames] | no frames]

Source Code for Module lib.common.exceptions

 1  # Copyright (C) 2010-2013 Claudio Guarnieri. 
 2  # Copyright (C) 2014-2016 Cuckoo Foundation. 
 3  # This file is part of Cuckoo Sandbox - http://www.cuckoosandbox.org 
 4  # See the file 'docs/LICENSE' for copying permission. 
 5   
6 -class CuckooError(Exception):
7 pass
8
9 -class CuckooPackageError(Exception):
10 pass
11
12 -class CuckooDisableModule(CuckooError):
13 """Exception for disabling a module dynamically."""
14