aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BuildTasks/BuildException.cs
blob: 953134ba799c19ba31f944b3d21bfbb4dbb09f7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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))
        {
        }
    }
}