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
|
module Exceptions
|
||||||
# Raised when an action sequence is trying to be run for an uncallable
|
# Raised when an action sequence is trying to be run for an uncallable
|
||||||
# action (not a lambda, middleware, or registered sequence).
|
# action (not a lambda, middleware, or registered sequence).
|
||||||
class UncallableAction < Exception
|
class UncallableAction < ::Exception
|
||||||
def initialize(callable)
|
def initialize(callable)
|
||||||
super()
|
super()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue