NonExistentGuard constructor

NonExistentGuard(
  1. String id
)

Throw this error when the guard requested was not defined before.

Implementation

NonExistentGuard(String id)
    : super('The guard identified with "$id" was not '
          'defined before. Please ensure you define it in Guards.init call '
          'or afterwards through Guards.addGuard().');