module Rubysermon class ModTemplate def initialize throw Rubysermon::ModTemplateException end def load_options(options) throw Rubysermon::ModTemplateException end def results throw Rubysermon::ModTemplateException end def notify? throw Rubysermon::ModTemplateException end def graph_labels throw Rubysermon::ModTemplateException end end class ModTemplateException < Exception def initialize(msg = "Method not implemented") super(msg) end end end