class IRB::Notifier::ErrUnrecognizedLevel

Public Class Methods

new(val) click to toggle source
Calls superclass method Exception::new
# File lib/irb/notifier.rb, line 24
def initialize(val)
  super("unrecognized notifier level: #{val} is specified")
end