class UNotifier::NotificationsConfigNotFoundError

Attributes

absolute_path[R]
path[R]

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File lib/exceptions.rb, line 28
def initialize(path)
  @path = path
  @absolute_path = File.expand_path(@path)
  message = "Configuration file not found at #{@absolute_path}"
  super(message)
end