StopError

libflitter/errors/StopError~ StopError

An error that, if thrown within Flitter, will cause Flitter to stop loading units. When this is thrown, Flitter will begin cleaning up units to stop gracefully. This error should be preferred over libflitter/errors/FatalError~FatalError when possible.


Constructor

new StopError()

Extends

Members

component :string

Name of the Flitter component that encountered an error.

Type:
  • string

Methods

required(service) → {module:libflitter/errors/FlitterError~FlitterError}

Creates an error message for missing services by name.

Parameters:
Name Type Description
service string | Array.<string>

the name of the service or array of services that are required

Returns:
  • instance of self to allow chaining
Type
module:libflitter/errors/FlitterError~FlitterError

unit(nameopt) → {string|module:libflitter/errors/FlitterError~FlitterError}

Get or set the component name.

Parameters:
Name Type Attributes Default Description
name string | null <optional>
null

name of the component

Returns:
Type
string | module:libflitter/errors/FlitterError~FlitterError