Fix superclass mismatch for exception.

I couldn't find where the mismatch actually was happening... will have to look harder.
This commit is contained in:
Mitchell Hashimoto 2010-07-27 23:27:23 -07:00
parent 9895f93e1d
commit 1eb407a021
1 changed files with 1 additions and 1 deletions

View File

@ -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()