Skip to content

Commit

Permalink
Fix catch exception for sample (dotnet#262)
Browse files Browse the repository at this point in the history
* Fix catch exception for control sample

* Fix exception type for Tizen

* Add bracket
  • Loading branch information
sung-su authored and rookiejava committed Nov 23, 2021
1 parent 7aa1565 commit 40336f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Essentials/src/Types/Shared/Exceptions.shared.cs
Expand Up @@ -4,7 +4,7 @@ namespace Microsoft.Maui.Essentials
{
static class ExceptionUtils
{
#if NETSTANDARD || NET6_0
#if NETSTANDARD || (NET6_0 && !TIZEN)
internal static NotImplementedInReferenceAssemblyException NotSupportedOrImplementedException =>
new NotImplementedInReferenceAssemblyException();
#else
Expand Down

0 comments on commit 40336f6

Please sign in to comment.