class SmartIoC::Errors::BeanNotFound

Public Class Methods

new(bean_name) click to toggle source
Calls superclass method
# File lib/smart_ioc/errors.rb, line 3
def initialize(bean_name)
  super("Unable to find bean :#{bean_name} in any packages")
end