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

Attributes inherited from Exception

#source_exception

Instance Method Summary collapse

Constructor Details

#initialize(directory) ⇒ FilePermissionError

Returns a new instance of FilePermissionError.



68
69
70
71
72
# File 'lib/rubygems/exceptions.rb', line 68

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



66
67
68
# File 'lib/rubygems/exceptions.rb', line 66

def directory
  @directory
end