Files
wpscan/lib/wpscan/errors/update.rb
Ryan Dewhurst d268a86795 HELLO v3!!!
2018-09-26 21:12:01 +02:00

9 lines
243 B
Ruby

module WPScan
# Error raised when there is a missing DB file and --no-update supplied
class MissingDatabaseFile < StandardError
def to_s
'Update required, you can not run a scan if a database file is missing.'
end
end
end