2013-02-14 15:25:04 +04:00
|
|
|
#!/usr/bin/env python2
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
"""
|
2013-01-18 18:07:51 +04:00
|
|
|
Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2008-10-15 19:38:22 +04:00
|
|
|
"""
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapBaseException(Exception):
|
2012-09-11 16:58:52 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapCompressionException(SqlmapBaseException):
|
2008-10-15 19:38:22 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapConnectionException(SqlmapBaseException):
|
2008-10-15 19:38:22 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapDataException(SqlmapBaseException):
|
2008-10-15 19:38:22 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapFilePathException(SqlmapBaseException):
|
2008-10-15 19:38:22 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapGenericException(SqlmapBaseException):
|
2008-10-15 19:38:22 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapMissingDependence(SqlmapBaseException):
|
2008-10-15 19:38:22 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapMissingMandatoryOptionException(SqlmapBaseException):
|
2008-10-15 19:38:22 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapMissingPrivileges(SqlmapBaseException):
|
2008-10-15 19:38:22 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapNoneDataException(SqlmapBaseException):
|
2008-10-15 19:38:22 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapNotVulnerableException(SqlmapBaseException):
|
2010-10-12 19:49:04 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapSilentQuitException(SqlmapBaseException):
|
2010-09-30 23:45:23 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapUserQuitException(SqlmapBaseException):
|
2008-10-15 19:38:22 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapSyntaxException(SqlmapBaseException):
|
2008-12-04 20:40:03 +03:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapThreadException(SqlmapBaseException):
|
2009-12-03 01:54:39 +03:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapUndefinedMethod(SqlmapBaseException):
|
2008-10-15 19:38:22 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapUnsupportedDBMSException(SqlmapBaseException):
|
2008-10-15 19:38:22 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapUnsupportedFeatureException(SqlmapBaseException):
|
2008-10-15 19:38:22 +04:00
|
|
|
pass
|
|
|
|
|
2013-01-14 14:22:38 +04:00
|
|
|
class SqlmapValueException(SqlmapBaseException):
|
|
|
|
pass
|