Exception: Gem::FilePermissionError

Inherits:
Exception
  • Object
show all
Defined in:
lib/rubygems/exceptions.rb

Overview

Signals that a file permission error is preventing the user from operating on the given directory.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(directory) ⇒ FilePermissionError

Returns a new instance of FilePermissionError.



83
84
85
86
87
# File 'lib/rubygems/exceptions.rb', line 83

def initialize(directory)
  @directory = directory

  super "You don't have write permissions for the #{directory} directory."
end

Instance Attribute Details

#directoryObject (readonly)

Returns the value of attribute directory.



81
82
83
# File 'lib/rubygems/exceptions.rb', line 81

def directory
  @directory
end