Extract Msf::DBImportError

MSP-11124
bug/bundler_fix
Luke Imhoff 2014-10-08 14:13:26 -05:00
parent 7a5ce19735
commit cffc74d571
No known key found for this signature in database
GPG Key ID: 5B1FB01FB33356F8
2 changed files with 3 additions and 3 deletions

View File

@ -57,15 +57,13 @@ require 'rex/parser/retina_xml'
require 'metasploit/framework/require'
require 'msf/core/database_event'
require 'msf/core/db_import_error'
require 'msf/core/db_manager/import_msf_xml'
require 'msf/core/host_state'
require 'msf/core/service_state'
module Msf
class DBImportError < RuntimeError
end
###
#
# The DB module ActiveRecord definitions for the DBManager

View File

@ -0,0 +1,2 @@
class Msf::DBImportError < RuntimeError
end