class Alephant::Renderer::Error::InvalidBasePath

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File lib/alephant/renderer/error/invalid_base_path.rb, line 9
def initialize(path)
  super "Path '#{path}' to renderer/queue directory is invalid"

  logger.metric('ViewMapperInvalidPath')
  logger.error(
    event: :ViewMapperInvalidPath,
    path:  path
  )
end