Fix uninitialized constant DestroyNetworkError

This was caused by a typo in the class name.
This commit is contained in:
Martin André 2015-09-23 22:17:40 +09:00
parent d2f96f56f6
commit 0e88594967

View File

@ -66,7 +66,7 @@ module VagrantPlugins
libvirt_network.undefine
@logger.info "Undefined it"
rescue => e
raise Error::DestroyNetworkError,
raise Errors::DestroyNetworkError,
network_name: libvirt_network.name,
error_message: e.message
end