catch (VirtualParadiseException)

This commit is contained in:
Oliver Booth 2022-11-30 18:59:29 +00:00
parent a90d2ccc7f
commit eef5dcf1c2
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ using System.Threading.Channels;
using VpSharp.ClientExtensions;
using VpSharp.Entities;
using VpSharp.EventData;
using VpSharp.Exceptions;
using VpSharp.Internal;
using VpSharp.Internal.NativeAttributes;
using static VpSharp.Internal.Native;
@ -239,7 +240,7 @@ public sealed partial class VirtualParadiseClient
{
virtualParadiseObject = await GetObjectAsync(objectId).ConfigureAwait(false);
}
catch // any exception: we don't care about GetObject failing. ID is always available
catch (VirtualParadiseException) // any exception: we don't care about GetObject failing. ID is always available
{
virtualParadiseObject = null;
}