summaryrefslogtreecommitdiff
path: root/lib/mixlib/shellout/exceptions.rb
blob: 16b1946f27502034a85fca7a440abb713a13f4fc (plain)
1
2
3
4
5
6
7
module Mixlib
  class ShellOut
    class ShellCommandFailed < RuntimeError; end
    class CommandTimeout < RuntimeError; end
    class InvalidCommandOption < RuntimeError; end
  end
end