module Rubysermon
    class ModTemplate
 
        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
 
        def y_axis_name
            throw Rubysermon::ModTemplateException
        end
 
        def graph_name
            throw Rubysermon::ModTemplateException
        end
 
    end
 
    class ModTemplateException < Exception
 
        def initialize(msg = "Method not implemented")
            super(msg)
        end
 
    end
end