ServerpodClientEndpointNotFound constructor

const ServerpodClientEndpointNotFound(
  1. Type type, {
  2. String? name,
})

Creates an Endpoint Missing Exception.

Implementation

const ServerpodClientEndpointNotFound(Type type, {String? name})
  : super(
      'No endpoint of type "$type" '
      '${name != null ? 'with name "$name" ' : ''}found.',
    );