mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
45 lines
1.7 KiB
Python
45 lines
1.7 KiB
Python
# Volatility
|
|
#
|
|
# This file is part of Volatility.
|
|
#
|
|
# Volatility is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Volatility is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Volatility. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
class VolatilityException(Exception):
|
|
"""Generic Volatility Specific exception, to help differentiate from other exceptions"""
|
|
def __init__(self, *args, **kwargs):
|
|
Exception.__init__(self, *args, **kwargs)
|
|
|
|
class AddrSpaceError(VolatilityException):
|
|
"""Address Space Exception, so we can catch and deal with it in the main program"""
|
|
def __init__(self):
|
|
self.reasons = []
|
|
VolatilityException.__init__(self, "No suitable address space mapping found")
|
|
|
|
def append_reason(self, driver, reason):
|
|
self.reasons.append((driver, reason))
|
|
|
|
def __str__(self):
|
|
result = VolatilityException.__str__(self) + "\nTried to open image as:\n" #pylint: disable-msg=E1101
|
|
for k, v in self.reasons:
|
|
result += " {0}: {1}\n".format(k, v)
|
|
|
|
return result
|
|
|
|
class CacheRelativeURLException(VolatilityException):
|
|
"""Exception for gracefully not saving Relative URLs in the cache"""
|
|
|
|
class SanityCheckException(VolatilityException):
|
|
"""Exception for failed sanity checks (which can potentially be disabled)"""
|