summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan McLellan <btm@loftninjas.org>2017-07-19 20:57:55 -0400
committerGitHub <noreply@github.com>2017-07-19 20:57:55 -0400
commitce1fc4d9e14426f9fc61477353a218536a4a5c48 (patch)
treef08e6b8edd0ae619c9ebd06c0e0f6366013e41cd
parent1b6c30ee7f83610d06fdb40aac0e7bbe22907442 (diff)
parentce04b724f06388c6ed64ec2ea8409c1fb8229d32 (diff)
downloadmixlib-shellout-ce1fc4d9e14426f9fc61477353a218536a4a5c48.tar.gz
Merge pull request #150 from chef/btm/empty_windows_command
Make Mixlib::ShellOut::EmptyWindowsCommand inherit from ShellCommandFailed
-rw-r--r--lib/mixlib/shellout/exceptions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mixlib/shellout/exceptions.rb b/lib/mixlib/shellout/exceptions.rb
index e1fae8d..b45a502 100644
--- a/lib/mixlib/shellout/exceptions.rb
+++ b/lib/mixlib/shellout/exceptions.rb
@@ -4,6 +4,6 @@ module Mixlib
class ShellCommandFailed < Error; end
class CommandTimeout < Error; end
class InvalidCommandOption < Error; end
- class EmptyWindowsCommand < Error; end
+ class EmptyWindowsCommand < ShellCommandFailed; end
end
end