2019-05-08 12:47:52 +02:00
|
|
|
#!/usr/bin/env python
|
2008-10-15 15:38:22 +00:00
|
|
|
|
|
|
|
|
"""
|
2026-01-01 19:12:07 +01:00
|
|
|
Copyright (c) 2006-2026 sqlmap developers (https://sqlmap.org)
|
2017-10-11 14:50:46 +02:00
|
|
|
See the file 'LICENSE' for copying permission
|
2008-10-15 15:38:22 +00:00
|
|
|
"""
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapBaseException(Exception):
|
2012-09-11 14:58:52 +02:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapCompressionException(SqlmapBaseException):
|
2008-10-15 15:38:22 +00:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapConnectionException(SqlmapBaseException):
|
2008-10-15 15:38:22 +00:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapDataException(SqlmapBaseException):
|
2008-10-15 15:38:22 +00:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapFilePathException(SqlmapBaseException):
|
2008-10-15 15:38:22 +00:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapGenericException(SqlmapBaseException):
|
2008-10-15 15:38:22 +00:00
|
|
|
pass
|
|
|
|
|
|
2014-11-10 13:41:53 +01:00
|
|
|
class SqlmapInstallationException(SqlmapBaseException):
|
|
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapMissingDependence(SqlmapBaseException):
|
2008-10-15 15:38:22 +00:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapMissingMandatoryOptionException(SqlmapBaseException):
|
2008-10-15 15:38:22 +00:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapMissingPrivileges(SqlmapBaseException):
|
2008-10-15 15:38:22 +00:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapNoneDataException(SqlmapBaseException):
|
2008-10-15 15:38:22 +00:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapNotVulnerableException(SqlmapBaseException):
|
2010-10-12 15:49:04 +00:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapSilentQuitException(SqlmapBaseException):
|
2010-09-30 19:45:23 +00:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapUserQuitException(SqlmapBaseException):
|
2008-10-15 15:38:22 +00:00
|
|
|
pass
|
|
|
|
|
|
2014-09-16 14:12:43 +02:00
|
|
|
class SqlmapShellQuitException(SqlmapBaseException):
|
|
|
|
|
pass
|
|
|
|
|
|
2017-07-25 23:32:30 +02:00
|
|
|
class SqlmapSkipTargetException(SqlmapBaseException):
|
|
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapSyntaxException(SqlmapBaseException):
|
2008-12-04 17:40:03 +00:00
|
|
|
pass
|
|
|
|
|
|
2014-11-16 14:25:44 +01:00
|
|
|
class SqlmapSystemException(SqlmapBaseException):
|
|
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapThreadException(SqlmapBaseException):
|
2009-12-02 22:54:39 +00:00
|
|
|
pass
|
|
|
|
|
|
2014-10-23 11:23:53 +02:00
|
|
|
class SqlmapTokenException(SqlmapBaseException):
|
|
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapUndefinedMethod(SqlmapBaseException):
|
2008-10-15 15:38:22 +00:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapUnsupportedDBMSException(SqlmapBaseException):
|
2008-10-15 15:38:22 +00:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapUnsupportedFeatureException(SqlmapBaseException):
|
2008-10-15 15:38:22 +00:00
|
|
|
pass
|
|
|
|
|
|
2013-01-14 10:22:38 +00:00
|
|
|
class SqlmapValueException(SqlmapBaseException):
|
|
|
|
|
pass
|