class NotExistError
Define super class for handle errors about elements that do not exist
Public Class Methods
new(message)
click to toggle source
Calls superclass method
BaseError::new
# File lib/require_smasher/errors/not_exist_error.rb, line 6 def initialize(message) super(message) end