Add missing raise

GSoC/Meterpreter_Web_Console
Matthew Kienow 2018-09-20 20:09:42 -04:00
parent c7badd5c37
commit 7d30f781f6
No known key found for this signature in database
GPG Key ID: 40787F8B1EAC6E41
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ module Msf::RPC::JSON
rescue ArgumentError
raise InvalidParams.new
rescue Msf::RPC::Exception => e
ApplicationServerError.new(e.message, data: { code: e.code })
raise ApplicationServerError.new(e.message, data: { code: e.code })
end
end