lib/rubysermon/output_driver_template.rb
cbb610ae
 module Rubysermon
 	class OutputDriverTemplate
 
 		def log
 			throw OutputDriverTemplateException
 		end
 
 	end
 
 	class OutputDriverTemplateException < Exception
 
 		def initialize(msg = "Method not implemented")
 			super(msg)
 		end
 
 	end
 end