Skip to content

Commit

Permalink
Improve UnableToLoadXamlException message
Browse files Browse the repository at this point in the history
  • Loading branch information
felipebaltazar committed Nov 2, 2024
1 parent bd02d90 commit 7245761
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ public string Xaml
get;
}

public override string Message
{
get => $"{base.Message} | {Xaml}";
}

public UnableToLoadXamlException(string message, string xaml, Exception inner) : base(message, inner)
{
Xaml = xaml;
Expand Down

0 comments on commit 7245761

Please sign in to comment.