class Nanoc::DataSources::Filesystem::Tools::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/data_sources/filesystem/tools.rb, line 16 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