ExceptionUtil.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Util / ExceptionUtil.cs / 1 / ExceptionUtil.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Web.Util { 
    using System; 
    using System.Web;
 
    static internal class ExceptionUtil {
        static internal ArgumentException ParameterInvalid(string parameter) {
            return new ArgumentException(SR.GetString(SR.Parameter_Invalid, parameter), parameter);
        } 

        static internal ArgumentException ParameterNullOrEmpty(string parameter) { 
            return new ArgumentException(SR.GetString(SR.Parameter_NullOrEmpty, parameter), parameter); 
        }
 
        static internal ArgumentException PropertyInvalid(string property) {
            return new ArgumentException(SR.GetString(SR.Property_Invalid, property), property);
        }
 
        static internal ArgumentException PropertyNullOrEmpty(string property) {
            return new ArgumentException(SR.GetString(SR.Property_NullOrEmpty, property), property); 
        } 

        static internal InvalidOperationException UnexpectedError(string methodName) { 
            return new InvalidOperationException(SR.GetString(SR.Unexpected_Error, methodName));
        }
    }
} 


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

namespace System.Web.Util { 
    using System; 
    using System.Web;
 
    static internal class ExceptionUtil {
        static internal ArgumentException ParameterInvalid(string parameter) {
            return new ArgumentException(SR.GetString(SR.Parameter_Invalid, parameter), parameter);
        } 

        static internal ArgumentException ParameterNullOrEmpty(string parameter) { 
            return new ArgumentException(SR.GetString(SR.Parameter_NullOrEmpty, parameter), parameter); 
        }
 
        static internal ArgumentException PropertyInvalid(string property) {
            return new ArgumentException(SR.GetString(SR.Property_Invalid, property), property);
        }
 
        static internal ArgumentException PropertyNullOrEmpty(string property) {
            return new ArgumentException(SR.GetString(SR.Property_NullOrEmpty, property), property); 
        } 

        static internal InvalidOperationException UnexpectedError(string methodName) { 
            return new InvalidOperationException(SR.GetString(SR.Unexpected_Error, methodName));
        }
    }
} 


// 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