Skip to content

ConfigError

[Source]

Returned by Application.build() when a configuration error prevented the routes from compiling.

Contains a human-readable description of the error. Common causes: - Overlapping group prefixes (two groups with the same prefix) - Empty group prefix (use add_request_interceptor() instead) - Special characters in group prefix (: or *) - Conflicting param names at the same path position across methods - Conflicting wildcard names at the same path position across methods - Segments after a wildcard (wildcards capture the entire remainder) - Empty param name (bare : with no name) - Empty wildcard name (bare * with no name)

class val ConfigError

Constructors

create

[Source]

new val create(
  message': String val)
: ConfigError val^

Parameters

Returns


Public fields

let message: String val

[Source]