class Axl::ConfigurationFileNotFoundError

EXCEPTIONS

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File lib/axl/configuration.rb, line 11
def initialize(path)
msg = "The configuration file could not be found at #{path}."
  super msg
end