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 Jan 21, 2022
1 parent d7bc772 commit de7d4e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Essentials/src/Types/Shared/Exceptions.shared.cs
Original file line number Diff line number Diff line change
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 de7d4e3

Please sign in to comment.