File: Exceptions\XpsSerializationException.cs
Web Access
Project: src\src\Microsoft.DotNet.Wpf\src\ReachFramework\ReachFramework.csproj (ReachFramework)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
using System;
using System.Runtime.Serialization;
 
namespace System.Windows.Xps
{
    /// <summary>
    /// 
    /// </summary>
    [Serializable]
    public class XpsSerializationException : XpsException
    {
        #region Constructors
 
        /// <summary>
        /// 
        /// </summary>
        public
        XpsSerializationException(
            )
            : base()
        {
        }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="message"></param>
        public
        XpsSerializationException(
            string          message
            )
            : base(message)
        {
        }
 
        /// <summary>
        ///
        /// </summary>
        /// <param name="message"></param>
        /// <param name="innerException"></param>
        public
        XpsSerializationException(
            string              message,
            Exception           innerException
            )
            : base(message, innerException)
        {
        }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="info"></param>
        /// <param name="context"></param>
        protected
        XpsSerializationException(
            SerializationInfo   info,
            StreamingContext    context
            )
            : base(info, context)
        {
        }
 
        #endregion Constructors
    }
}