class Epuber::Compiler::FileFinders::FileNotFoundError

Attributes

context_path[R]

@return [String]

pattern[R]

@return [String]

Public Class Methods

new(pattern, context_path) click to toggle source

@param [String] pattern @param [String] context_path

# File lib/epuber/compiler/file_finders/abstract.rb, line 18
def initialize(pattern, context_path)
  @pattern = pattern
  @context_path = context_path
end

Public Instance Methods

to_s() click to toggle source
# File lib/epuber/compiler/file_finders/abstract.rb, line 23
def to_s
  "Not found file matching pattern `#{pattern}` from context path #{context_path}."
end