module CloudBackup class Error < Exception end class << Error def must_define(method) new "You must define a (#{method}) method in your driver class." end def invalid_identificator new 'Invalid identificator.' end end end