From 30c84c78997446fa82671da48059d1612bfc10de Mon Sep 17 00:00:00 2001 From: Akshay Karle Date: Tue, 19 Jan 2016 15:59:16 -0800 Subject: [PATCH] make sure to raise the exception --- lib/lxc/start_ephemeral.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lxc/start_ephemeral.rb b/lib/lxc/start_ephemeral.rb index d867d48..f500122 100644 --- a/lib/lxc/start_ephemeral.rb +++ b/lib/lxc/start_ephemeral.rb @@ -35,7 +35,7 @@ module LXC end rescue => e - ContainerError.new("Unexpected error when starting container. The error was: #{e}") + raise ContainerError.new("Unexpected error when starting container. The error was: #{e}") end private