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 ByDesign => new NotImplementedException();
6
7 internal static Exception ByDesignWithMessage(string message)
8 {
9 return new NotImplementedException(message);
10 }
11}
static Exception ByDesignWithMessage(string message)
static Exception ByDesign