module Qujo module Exceptions class ResqueNotLoaded < StandardError def initialize(msg = "Resque is undefined") super end end class ResqueSchedulerNotLoaded < StandardError def initialize(msg = "Resque::Scheduler is undefined") super end end class MongoidUndefined < StandardError def initialize(msg = "Mongoid is undefined") super end end class JobNameUndefined < StandardError def initialize(msg = "Job name must match Jobs::ModelName::ActionName or be passed as the :job option") super end end end end