21 lines
522 B
C#
21 lines
522 B
C#
// ----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.Singularity.Xml
|
|
{
|
|
/// <summary>
|
|
/// Summary description for XmlException.
|
|
/// </summary>
|
|
public class XmlException : Exception
|
|
{
|
|
public XmlException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|