mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-01-16 02:09:20 -05:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
36 lines
1.7 KiB
C#
36 lines
1.7 KiB
C#
namespace Sandbox;
|
|
|
|
internal static partial class Rules
|
|
{
|
|
internal static string[] Exceptions = new[]
|
|
{
|
|
"System.Private.CoreLib/System.Exception*",
|
|
"System.Private.CoreLib/System.AggregateException*",
|
|
"System.Private.CoreLib/System.AccessViolationException*",
|
|
"System.Private.CoreLib/System.ArgumentException*",
|
|
"System.Private.CoreLib/System.ArgumentNullException*",
|
|
"System.Private.CoreLib/System.ArgumentOutOfRangeException*",
|
|
"System.Private.CoreLib/System.ArithmeticException*",
|
|
"System.Private.CoreLib/System.ArrayTypeMismatchException*",
|
|
"System.Private.CoreLib/System.DivideByZeroException*",
|
|
"System.Private.CoreLib/System.FormatException*",
|
|
"System.Private.CoreLib/System.IndexOutOfRangeException*",
|
|
"System.Private.CoreLib/System.InvalidCastException*",
|
|
"System.Private.CoreLib/System.InvalidOperationException*",
|
|
"System.Private.CoreLib/System.NotImplementedException*",
|
|
"System.Private.CoreLib/System.NotSupportedException*",
|
|
"System.Private.CoreLib/System.NullReferenceException*",
|
|
"System.Private.CoreLib/System.OperationCanceledException*",
|
|
"System.Private.CoreLib/System.PlatformNotSupportedException*",
|
|
"System.Private.CoreLib/System.TimeoutException*",
|
|
"System.Private.CoreLib/System.UnauthorizedAccessException*",
|
|
"System.Private.CoreLib/System.IO.IOException*",
|
|
"System.Private.CoreLib/System.IO.FileNotFoundException*",
|
|
"System.Private.CoreLib/System.IO.DirectoryNotFoundException*",
|
|
"System.Private.CoreLib/System.IO.FileLoadException*",
|
|
"System.Private.CoreLib/System.IO.PathTooLongException*",
|
|
"System.Private.CoreLib/System.IO.EndOfStreamException*",
|
|
"System.Private.CoreLib/System.Runtime.CompilerServices.SwitchExpressionException*",
|
|
};
|
|
}
|