TaskSchedulerException.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Threading / Tasks / TaskSchedulerException.cs / 1305376 / TaskSchedulerException.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
// =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
// 
// TaskSchedulerException.cs 
//
// [....] 
//
// An exception for task schedulers.
//
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- 

using System; 
using System.Runtime.InteropServices; 
using System.Runtime.Serialization;
 
namespace System.Threading.Tasks
{

    ///  
    /// Represents an exception used to communicate an invalid operation by a
    /// . 
    ///  
    [Serializable]
    public class TaskSchedulerException : Exception 
    {
        /// 
        /// Initializes a new instance of the  class.
        ///  
        public TaskSchedulerException() : base(Environment.GetResourceString("TaskSchedulerException_ctor_DefaultMessage")) //
        { 
        } 

        ///  
        /// Initializes a new instance of the 
        /// class with a specified error message.
        /// 
        /// The error message that explains the reason for the exception. 
        public TaskSchedulerException(string message) : base(message)
        { 
        } 

        ///  
        /// Initializes a new instance of the 
        /// class using the default error message and a reference to the inner exception that is the cause of
        /// this exception.
        ///  
        /// The exception that is the cause of the current exception.
        public TaskSchedulerException(Exception innerException) 
            : base(Environment.GetResourceString("TaskSchedulerException_ctor_DefaultMessage"), innerException) 
        {
        } 

        /// 
        /// Initializes a new instance of the 
        /// class with a specified error message and a reference to the inner exception that is the cause of 
        /// this exception.
        ///  
        /// The error message that explains the reason for the exception. 
        /// The exception that is the cause of the current exception.
        public TaskSchedulerException(string message, Exception innerException) : base(message, innerException) 
        {
        }

        ///  
        /// Initializes a new instance of the 
        /// class with serialized data. 
        ///  
        /// The  that holds
        /// the serialized object data about the exception being thrown. 
        /// The  that
        /// contains contextual information about the source or destination. 
        protected TaskSchedulerException(SerializationInfo info, StreamingContext context)
            : base(info, context) 
        {
        } 
 

    } 

}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.


                        

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