Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MetadataException.cs
Go to the documentation of this file.
1namespace System.Reflection;
2
3internal sealed class MetadataException : Exception
4{
5 private int m_hr;
6
7 internal MetadataException(int hr)
8 {
9 m_hr = hr;
10 }
11
12 public override string ToString()
13 {
14 return $"MetadataException HResult = {m_hr:x}.";
15 }
16}