From 1eb407a021a5132bbbb6cfe7d4b2b81b08d20b64 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 27 Jul 2010 23:27:23 -0700 Subject: [PATCH] Fix superclass mismatch for exception. I couldn't find where the mismatch actually was happening... will have to look harder. --- lib/vagrant/exceptions/uncallable_action.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/exceptions/uncallable_action.rb b/lib/vagrant/exceptions/uncallable_action.rb index 0a0c254b6..b971b5ef0 100644 --- a/lib/vagrant/exceptions/uncallable_action.rb +++ b/lib/vagrant/exceptions/uncallable_action.rb @@ -2,7 +2,7 @@ module Vagrant module Exceptions # Raised when an action sequence is trying to be run for an uncallable # action (not a lambda, middleware, or registered sequence). - class UncallableAction < Exception + class UncallableAction < ::Exception def initialize(callable) super()