diff options
Diffstat (limited to 'lib/mixlib/shellout/exceptions.rb')
-rw-r--r-- | lib/mixlib/shellout/exceptions.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/mixlib/shellout/exceptions.rb b/lib/mixlib/shellout/exceptions.rb new file mode 100644 index 0000000..417def3 --- /dev/null +++ b/lib/mixlib/shellout/exceptions.rb @@ -0,0 +1,8 @@ +module Mixlib + class ShellOut + class ShellCommandFailed < RuntimeError; end + class CommandTimeout < RuntimeError; end + class InvalidCommandOption < RuntimeError; end + end +end + |