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