class SiteHook::NoConfigError
Attributes
path[R]
Public Class Methods
new(path)
click to toggle source
Calls superclass method
SiteHook::SiteHookError::new
# File lib/site_hook/exceptions.rb, line 20 def initialize(path) @str = "Config path '#{Paint[path, "red"]}' does not exist!" @path = Pathname.new(path) super(@str, 98) end