C# Class Testeroids.PropertyAlreadyInitializedException

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

Private Properties

Property Type Description

Public Methods

Method Description
PropertyAlreadyInitializedException ( string propertyName ) : System

Initializes a new instance of the PropertyAlreadyInitializedException class.

Method Details

PropertyAlreadyInitializedException() public method

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