From 2724cfee4c163f3297ee25edfd2372767cfd4945 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 19 Jul 2018 00:58:00 -0700 Subject: Move tool projects to Tools repo --- src/WixToolset.BuildTasks/BuildException.cs | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/WixToolset.BuildTasks/BuildException.cs (limited to 'src/WixToolset.BuildTasks/BuildException.cs') diff --git a/src/WixToolset.BuildTasks/BuildException.cs b/src/WixToolset.BuildTasks/BuildException.cs deleted file mode 100644 index 953134ba..00000000 --- a/src/WixToolset.BuildTasks/BuildException.cs +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. - -namespace WixToolset.BuildTasks -{ - using System; - using System.Globalization; - - class BuildException : Exception - { - public BuildException() - { - } - - public BuildException(string message) : base(message) - { - } - - public BuildException(string message, Exception innerException) : base(message, innerException) - { - } - - public BuildException(string format, params string[] args) : this(String.Format(CultureInfo.CurrentCulture, format, args)) - { - } - } -} -- cgit v1.2.3-55-g6feb