Sha256: 10d48432c338c98f098ffdecf38e463ec33ec9e221e8ee5bd5956dba83ef0bca
Contents?: true
Size: 529 Bytes
Versions: 3
Compression:
Stored size: 529 Bytes
Contents
module OodSupport # The root exception class that all OodSupport-specific exceptions inherit # from class Error < StandardError; end # An exception raised when attempting to access a path that doesn't exist on # local file system class InvalidPath < Error; end # An exception raised when attempting to run a command that exits with an # exit code other than 0 class BadExitCode < Error; end # An exception raised when attempting to parse an ACL entry from a string class InvalidACLEntry < Error; end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ood_support-0.0.5 | lib/ood_support/errors.rb |
ood_support-0.0.3 | lib/ood_support/errors.rb |
ood_support-0.0.2 | lib/ood_support/errors.rb |