mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-21 07:17:45 +01:00
Fix disposed exception parameters
This commit is contained in:
parent
a7bb97c91f
commit
f458b1d0c1
1 changed files with 1 additions and 1 deletions
|
|
@ -227,7 +227,7 @@ namespace Dalamud.Hooking
|
||||||
{
|
{
|
||||||
if (this.IsDisposed)
|
if (this.IsDisposed)
|
||||||
{
|
{
|
||||||
throw new ObjectDisposedException("Hook is already disposed.");
|
throw new ObjectDisposedException(message: "Hook is already disposed", null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue