module Rubysermon
	class OutputDriverTemplate

		def log
			throw OutputDriverTemplateException
		end

	end

	class OutputDriverTemplateException < Exception

		def initialize(msg = "Method not implemented")
			super(msg)
		end

	end
end