class Webgen::BundleLoadError

This error is raised when a needed bundle is not found.

Attributes

bundle[R]

The name of the bundle that is missing.

Public Class Methods

new(bundle) click to toggle source

Create a new BundleLoadError.

Calls superclass method Webgen::Error::new
    # File lib/webgen/error.rb
135 def initialize(bundle)
136   super("The needed bundle '#{bundle}' is missing.", nil, nil)
137 end