Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
NotImplemented.cs
Go to the documentation of this file.
1namespace System;
2
3internal static class NotImplemented
4{
5 internal static Exception ByDesignWithMessage(string message)
6 {
7 return new NotImplementedException(message);
8 }
9}
static Exception ByDesignWithMessage(string message)