class Dropcaster::MissingAttributeError

Public Class Methods

new(missing_attribute) click to toggle source
Calls superclass method Dropcaster::ConfigurationError::new
# File lib/dropcaster/errors.rb, line 11
def initialize(missing_attribute)
  super("#{missing_attribute} is a mandatory channel attribute, but it is missing.")
end