diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-12-07 14:17:39 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-12-07 14:17:39 -0800 |
| commit | 221da62c05ef2b515eb507c77655514cd0ec32a4 (patch) | |
| tree | fabec5b8ac871f17de6fe0aad3e6188b9af42bfb /src/WixToolset.Data/WindowsInstaller/WixMissingTableDefinitionException.cs | |
| parent | ca376995792d2e2a1a7f39760989496702a8f603 (diff) | |
| download | wix-221da62c05ef2b515eb507c77655514cd0ec32a4.tar.gz wix-221da62c05ef2b515eb507c77655514cd0ec32a4.tar.bz2 wix-221da62c05ef2b515eb507c77655514cd0ec32a4.zip | |
Reintegrate MSI constructs into WxToolset.Data.WindowsInstaller namespace
Diffstat (limited to 'src/WixToolset.Data/WindowsInstaller/WixMissingTableDefinitionException.cs')
| -rw-r--r-- | src/WixToolset.Data/WindowsInstaller/WixMissingTableDefinitionException.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/WixToolset.Data/WindowsInstaller/WixMissingTableDefinitionException.cs b/src/WixToolset.Data/WindowsInstaller/WixMissingTableDefinitionException.cs new file mode 100644 index 00000000..4b15c0e5 --- /dev/null +++ b/src/WixToolset.Data/WindowsInstaller/WixMissingTableDefinitionException.cs | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | // 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. | ||
| 2 | |||
| 3 | namespace WixToolset.Data.WindowsInstaller | ||
| 4 | { | ||
| 5 | using System; | ||
| 6 | |||
| 7 | /// <summary> | ||
| 8 | /// Exception thrown when a table definition is missing. | ||
| 9 | /// </summary> | ||
| 10 | [Serializable] | ||
| 11 | public class WixMissingTableDefinitionException : WixException | ||
| 12 | { | ||
| 13 | /// <summary> | ||
| 14 | /// Instantiate new WixMissingTableDefinitionException. | ||
| 15 | /// </summary> | ||
| 16 | /// <param name="error">Localized error information.</param> | ||
| 17 | public WixMissingTableDefinitionException(MessageEventArgs error) | ||
| 18 | : base(error) | ||
| 19 | { | ||
| 20 | } | ||
| 21 | } | ||
| 22 | } | ||
