Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased

- fix: Use Span on Scope instead of Transaction for GuzzleMiddleware (#1099)
- Add setter for value on the `ExceptionDataBag` (#1100)

## 3.0.0 (2020-09-28)

Expand Down
8 changes: 8 additions & 0 deletions src/ExceptionDataBag.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ public function getValue(): string
return $this->value;
}

/**
* Sets the value of the exception.
*/
public function setValue(string $value): void
{
$this->value = $value;
}

/**
* Gets the stack trace object corresponding to the Stack Trace Interface.
*/
Expand Down