class Epuber::Compiler::FileFinders::FileNotFoundError
Attributes
@return [String]
@return [String]
Public Class Methods
Source
# File lib/epuber/compiler/file_finders/abstract.rb, line 18 def initialize(pattern, context_path) super() @pattern = pattern @context_path = context_path end
@param [String] pattern @param [String] context_path
Calls superclass method
Public Instance Methods
Source
# File lib/epuber/compiler/file_finders/abstract.rb, line 25 def to_s "Not found file matching pattern `#{pattern}` from context path #{context_path}." end