# `BB.Error.Kinematics.UnknownLink`
[🔗](https://github.com/beam-bots/bb/blob/main/lib/bb/error/kinematics/unknown_link.ex#L5)

Target link not found in robot topology.

Raised when attempting to solve inverse kinematics for a link
that does not exist in the robot's kinematic structure.

# `t`

```elixir
@type t() :: %BB.Error.Kinematics.UnknownLink{
  __exception__: true,
  bread_crumbs: term(),
  class: term(),
  path: term(),
  robot: atom() | nil,
  splode: term(),
  stacktrace: term(),
  target_link: atom(),
  vars: term()
}
```

# `exception`

```elixir
@spec exception(opts :: Keyword.t()) :: %BB.Error.Kinematics.UnknownLink{
  __exception__: true,
  bread_crumbs: term(),
  class: term(),
  path: term(),
  robot: term(),
  splode: term(),
  stacktrace: term(),
  target_link: term(),
  vars: term()
}
```

Create an `Elixir.BB.Error.Kinematics.UnknownLink` without raising it.

## Keys

- :target_link
- :robot

---

*Consult [api-reference.md](api-reference.md) for complete listing*
