lib/rubysermon/mod_template.rb
def91ab1
 module Rubysermon
 	class ModTemplate
 
7175b248
 		def initialize
 			throw Rubysermon::ModTemplateException
 		end
 
3dffe17e
 		def load_options(options)
7175b248
 			throw Rubysermon::ModTemplateException
 		end
 
 		def results
 			throw Rubysermon::ModTemplateException
 		end
 
 		def notify?
 			throw Rubysermon::ModTemplateException
 		end
6fcbc306
 
eb09be77
 		def graph_labels
6fcbc306
 			throw Rubysermon::ModTemplateException
 		end
 
def91ab1
 	end
 
7175b248
 	class ModTemplateException < Exception
 
 		def initialize(msg = "Method not implemented")
 			super(msg)
 		end
 
 	end
def91ab1
 end