Class
Signals that a file permission error is preventing the user from operating on the given directory.
Attributes
Read
No documentation available
Class Methods
lib/rubygems/exceptions.rb
View on GitHub
# File tmp/rubies/ruby-3.1.3/lib/rubygems/exceptions.rb, line 92
def initialize(directory)
@directory = directory
super "You don't have write permissions for the #{directory} directory."
end
No documentation available