XpsViewerException.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / TrustUi / MS / Internal / documents / Application / XpsViewerException.cs / 1 / XpsViewerException.cs

                            //---------------------------------------------------------------------------- 
//
// 
//    Copyright (c) Microsoft Corporation.  All rights reserved.
//  
//
// Description: 
//  The XpsViewerException is thrown when an error occurs in XPS Viewer that 
//  cannot be handled in the application.
// 
// History:
//  11/14/2005: [....]: Initial implementation.
//
//--------------------------------------------------------------------------- 

using System; 
using System.Runtime.Serialization; 
using System.Windows.TrustUI;
 
namespace MS.Internal.Documents.Application
{
    /// 
    /// The XpsViewerException is thrown when an error occurs in XPS Viewer 
    /// that cannot be handled in the application.
    ///  
    [Serializable()] 
    internal class XpsViewerException : Exception
    { 
        /// 
        /// Creates a new instance of XpsViewerException class.
        /// This constructor initializes the Message property of the new
        /// instance to a generic message that describes an exception in the 
        /// XPS Viewer. This message takes into account the current system
        /// culture. 
        ///  
        internal XpsViewerException()
            : base(SR.Get(SRID.XpsViewerGenericException)) 
        {}

        /// 
        /// Creates a new instance of XpsViewerException class. 
        /// This constructor initializes the Message property of the new
        /// instance with the specified error message. 
        /// The caller of this constructor is required to ensure that this 
        /// string has been localized for the current system culture.
        ///  
        /// The message that describes the error.
        internal XpsViewerException(string message)
            : base(message)
        {} 

        ///  
        /// Creates a new instance of XpsViewerException class. 
        /// This constructor initializes the Message property of the new
        /// instance with the specified error message. 
        /// The caller of this constructor is required to ensure that this
        /// string has been localized for the current system culture.
        /// The InnerException property is initialized using the
        /// innerException parameter. 
        /// 
        /// The message that describes the error. 
        /// The exception that is the cause of the 
        /// current exception.
        internal XpsViewerException(string message, Exception innerException) 
            : base(message, innerException)
        {}
    }
} 


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK