Files
wpscan/lib/wpscan/errors/update.rb
2018-11-08 19:04:40 +00:00

9 lines
235 B
Ruby

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