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