Class Webgen::PluginNotFound
In: lib/webgen/plugin.rb
Parent: RuntimeError
RuntimeError PluginParamNotFound PluginNotFound ConfigurationFileInvalid CmdParse::CommandParser CommandParser DirectoryInfo GalleryStyle WebSiteStyle WebSiteTemplate SipttraStyle Test::Unit::TestCase TestCase PluginTestCase TagTestCase CmdParse::Command ShowCommand CheckCommand UseCommand CreateCommand TSort DependencyHash Hash Comparable Language ::Logger Logger Logger DEFAULT_WRAPPER_MODULE WebSite Qt::MainWindow MainWindow Qt::Dialog NewWebsiteDialog Qt::TextEdit LogWidget ::Rake::TaskLib WebgenTask ConfigurationFile Website PluginManager PluginLoader PluginParamValueNotFound Dummy Color CliUtils PluginDefs lib/webgen/languages.rb lib/webgen/website.rb lib/webgen/gui/common.rb lib/webgen/plugin.rb lib/webgen/test.rb lib/webgen/cli.rb ClassMethods PluginDefs LanguageManager lib/webgen/gui/new_website_dlg.rb lib/webgen/gui/main.rb GUI lib/webgen/rake/webgentask.rb Rake Webgen dot/m_60_1.png

Raised when a plugin which should have been loaded was not loaded.

Methods

message   new  

Attributes

name  [R] 
needed_by  [R] 

Public Class methods

[Source]

     # File lib/webgen/plugin.rb, line 280
280:     def initialize( name, needed_by )
281:       @name = name
282:       @needed_by = needed_by
283:     end

Public Instance methods

[Source]

     # File lib/webgen/plugin.rb, line 285
285:     def message
286:       "Plugin '#{@name}' needed by '#{@needed_by}', but it was not loaded"
287:     end

[Validate]