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:
parent
9895f93e1d
commit
1eb407a021
|
@ -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()
|
||||
|
||||
|
|
Loading…
Reference in New Issue