You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by mf...@apache.org on 2011/05/19 11:41:27 UTC

svn commit: r1124641 - /incubator/deltacloud/trunk/server/lib/deltacloud/base_driver/exceptions.rb

Author: mfojtik
Date: Thu May 19 09:41:27 2011
New Revision: 1124641

URL: http://svn.apache.org/viewvc?rev=1124641&view=rev
Log:
Fixed typo in exception handling code

Modified:
    incubator/deltacloud/trunk/server/lib/deltacloud/base_driver/exceptions.rb

Modified: incubator/deltacloud/trunk/server/lib/deltacloud/base_driver/exceptions.rb
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/server/lib/deltacloud/base_driver/exceptions.rb?rev=1124641&r1=1124640&r2=1124641&view=diff
==============================================================================
--- incubator/deltacloud/trunk/server/lib/deltacloud/base_driver/exceptions.rb (original)
+++ incubator/deltacloud/trunk/server/lib/deltacloud/base_driver/exceptions.rb Thu May 19 09:41:27 2011
@@ -121,7 +121,7 @@ module Deltacloud
         $stderr.puts "# #{e.message}"
         $stderr.puts "# #{e.backtrace.join("\n")}"
         $stderr.puts "##############"
-        raise BackendError.new(e)
+        raise BackendError.new(e, e.message)
       end
     end