A game about forced loneliness, made by TACStudios
at master 18 lines 593 B view raw
1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Microsoft Corporation. All rights reserved. 3 * Licensed under the MIT License. See License.txt in the project root for license information. 4 *--------------------------------------------------------------------------------------------*/ 5using System; 6 7namespace Microsoft.Unity.VisualStudio.Editor.Messaging 8{ 9 internal class ExceptionEventArgs 10 { 11 public Exception Exception { get; } 12 13 public ExceptionEventArgs(Exception exception) 14 { 15 Exception = exception; 16 } 17 } 18}