class Gem::FilePermissionError

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

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File lib/rubygems/exceptions.rb, line 29
def initialize(path)
  super("You don't have write permissions into the #{path} directory.")
end