Exception: Keg::DirectoryNotWritableError Private
- Defined in:
- keg.rb
Overview
This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.
Error for when a directory is not writable.
Instance Attribute Summary
Attributes inherited from LinkError
Instance Method Summary collapse
-
#to_s ⇒ String
private
Methods inherited from LinkError
Constructor Details
This class inherits a constructor from Keg::LinkError
Instance Method Details
#to_s ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
72 73 74 75 76 77 |
# File 'keg.rb', line 72 def to_s <<~EOS Could not symlink #{src} #{dst.dirname} is not writable. EOS end |