I am trying to learn how to write plugins in Rails by learning other people’s plugins, turns out it is way harder than I thought.
I found this:
module Facebooker
class AdapterBase
class UnableToLoadAdapter < Exception; end
What does the fourth line: class UnableToLoadAdapter < Exception; end mean?
Beginning Ruby: From Novice to Professional, 2nd ed. by Peter Cooper