C# Class Testeroids.PropertyNotInitializedException

Exception is thrown when code tries to call the get method on a property which has not been set
Inheritance: System.Exception
Mostra file Open project: Testeroids/Testeroids

Private Properties

Property Type Description

Public Methods

Method Description
PropertyNotInitializedException ( string propertyName ) : System

Initializes a new instance of the PropertyNotInitializedException class.

Method Details

PropertyNotInitializedException() public method

Initializes a new instance of the PropertyNotInitializedException class.
public PropertyNotInitializedException ( string propertyName ) : System
propertyName string /// Full name of the property which hasn't been set before get was accessed ///
return System