# AUR0099

## Error Message

Development builds:

`AUR0099: Method <methodName> not implemented`

Production builds:

`AUR0099:<methodName>`

Where `<methodName>` is the name of the method that was called.

## Description

This error occurs when Aurelia (or an Aurelia-related extension point) reaches a method that is intentionally unimplemented for the current class/platform adapter, or when a custom implementation left a required method as a stub.

It typically indicates one of the following:

* A custom integration/plugin/adapter is missing an implementation.
* An unsupported code path was reached for the current environment.
* A bug/regression caused Aurelia to call a method that should not be reached.

## Example Trigger

```ts
class CustomAdapter {
  // ❌ Stub left behind
  public doWork(): never {
    throw new Error('AUR0099: Method doWork not implemented');
  }
}

new CustomAdapter().doWork();
```

## Correct Usage

* If you are implementing/overriding an Aurelia extensibility point, implement the required method instead of leaving a stub.
* If you are consuming Aurelia APIs, avoid relying on internal/private APIs; use the public API surface.

## Troubleshooting

* Use the stack trace to identify which method/class threw `AUR0099`.
* If the method is part of a custom integration, implement it or switch to a supported implementation.
* If it happens inside Aurelia internals on a supported environment, try upgrading and (if it persists) open an issue with a minimal reproduction.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aurelia.io/developer-guides/error-messages/0901-to-0908/aur0099.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
