AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
SystemException.cs
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation. All rights reserved.
2 // Licensed under the MIT License. See LICENSE in the project root for license information.
3 
4 #if UNITY_WSA && !UNITY_EDITOR && !ENABLE_IL2CPP
5 namespace System
6 {
7  public class SystemException : Exception
8  {
9  public SystemException() {}
10  public SystemException(string message) : base(message) {}
11  public SystemException(string message, Exception innerException) : base(message, innerException) {}
12  }
13 }
14 #endif