class Nanoc::DataSources::Filesystem::Tools::MaxSymlinkDepthExceededError
Error that is raised when too many symlink indirections are encountered.
Attributes
@return [String] The last filename that was attempted to be
resolved before giving up
Public Class Methods
Source
# 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
@param [String] filename The last filename that was attempted to be
resolved before giving up
Calls superclass method