summaryrefslogtreecommitdiff
path: root/lib/mixlib/shellout/exceptions.rb
blob: e1fae8d43674733890de6b217fde99db7f87b423 (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 < Error; end
  end
end