Raised when there is an assignation to a category set that does not exist
Public Class Methods
new(*args)click to toggle source
(Not documented)
# File vendor/plugins/ubiquo_categories/lib/ubiquo_categories/exceptions.rb, line 14
14: definitialize*args
15: @key = args.first
16: end
Public Instance Methods
to_s()click to toggle source
(Not documented)
# File vendor/plugins/ubiquo_categories/lib/ubiquo_categories/exceptions.rb, line 18
18: defto_s
19: @key?"CategorySet with key '#{@key}' was not found":super
20: end