Throwed when an Ipernity object has not been configured. Use the method ConfigureIpernityObject(IpernityObject) to configure the object and allow it to interact with Ipernity

Namespace:  IpernityNET.IpernityObjects
Assembly:  IpernityNET (in IpernityNET.dll) Version: 0.3.1.0 (0.3.1.0)

Syntax

C#
public class ObjectNotConfiguredException : Exception
Visual Basic (Declaration)
Public Class ObjectNotConfiguredException _
	Inherits Exception
Visual C++
public ref class ObjectNotConfiguredException : public Exception

Examples

CopyC#
Ipernity ipernity = new Ipernity("apikey", "apisecret", "token");
// throw an exception :
Album album = new Album(123456);
album.DocsGetList();

//do not throw exception
Album album2 = new Album(123456);
ipernity.ConfigureIpernityObject(album2);
album2.DocsGetList();

Inheritance Hierarchy

System..::.Object
  System..::.Exception
    IpernityNET.IpernityObjects..::.ObjectNotConfiguredException

See Also