class Nanoc::Extra::FilesystemTools::MaxSymlinkDepthExceededError
Error that is raised when too many symlink indirections are encountered.
Attributes
filename[R]
@return [String] The last filename that was attempted to be
resolved before giving up
Public Class Methods
new(filename)
click to toggle source
@param [String] filename The last filename that was attempted to be
resolved before giving up
Calls superclass method
# File lib/nanoc/extra/filesystem_tools.rb, line 14 def initialize(filename) @filename = filename super("Too many indirections while resolving symlinks. I gave up after finding out #{filename} was yet another symlink. Sorry!") end