C# Class ActiveDirectoryBlogpost.Foundation.Errors.UserNotFoundException

Encapsulates an exception, for when a user could not be found.
Inheritance: Exception
Show file Open project: 5minds/ActiveDirectorySample

Public Methods

Method Description
UserNotFoundException ( string message ) : System

Initializes a new instance of the UserNotFoundException class.

UserNotFoundException ( string message, Exception innerException ) : System

Initializes a new instance of the UserNotFoundException class.

Method Details

UserNotFoundException() public method

Initializes a new instance of the UserNotFoundException class.
public UserNotFoundException ( string message ) : System
message string /// The message. ///
return System

UserNotFoundException() public method

Initializes a new instance of the UserNotFoundException class.
public UserNotFoundException ( string message, Exception innerException ) : System
message string /// The message. ///
innerException Exception /// The inner exception. ///
return System