Skip to content

Commit

Permalink
Merge pull request #123 from dotnet-campus/t/walterlv/ex-ipc
Browse files Browse the repository at this point in the history
增加一种新的异常类型的IPC传输
  • Loading branch information
lindexi authored Mar 10, 2023
2 parents e9ce63c + e13e83f commit 04317aa
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,11 @@ public void Throw()
{
{ typeof(ArgumentException).FullName!, (m, e) => new ArgumentException(m) },
{ typeof(ArgumentNullException).FullName!, (m, e) => new ArgumentNullException(e, m) },
{ typeof(BadImageFormatException).FullName!, (m, e) => new BadImageFormatException(m) },
{ typeof(InvalidCastException).FullName!, (m, e) => new InvalidCastException(m) },
{ typeof(InvalidOperationException).FullName!, (m, e) => new InvalidOperationException(m) },
{ typeof(NotImplementedException).FullName!, (m, e) => new NotImplementedException(m) },
{ typeof(NullReferenceException).FullName!, (m, e) => new NullReferenceException(m) },
{ typeof(BadImageFormatException).FullName!, (m, e) => new BadImageFormatException(m) },
};
}
}

0 comments on commit 04317aa

Please sign in to comment.