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