lib/ronin/payloads/helpers/shell.rb in ronin-exploits-0.2.0 vs lib/ronin/payloads/helpers/shell.rb in ronin-exploits-0.2.1
- old
+ new
@@ -19,11 +19,11 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#++
#
-require 'ronin/payloads/helpers/exceptions/unimplemented'
+require 'ronin/payloads/helpers/exceptions/not_implemented'
require 'ronin/payloads/helpers/exceptions/program_not_found'
module Ronin
module Payloads
module Helpers
@@ -38,10 +38,10 @@
#
# Executes the specified _command_ with the given _arguments_.
#
def exec(command,*arguments)
- raise(Unimplemented,"the exec method has not been implemented",caller)
+ raise(NotImplemented,"the exec method has not been implemented",caller)
end
#
# Executes the specified _command_ with the given _arguments_,
# and prints the output of the command.