Class Gem::FilePermissionError
In: lib/rubygems/exceptions.rb
Parent: Gem::Exception

Signals that a file permission error is preventing the user from installing in the requested directories.

Methods

new  

Public Class methods

[Source]

    # File lib/rubygems/exceptions.rb, line 31
31:   def initialize(path)
32:     super("You don't have write permissions into the #{path} directory.")
33:   end

[Validate]