Skip to content

Vuzit_ClientException

bmatzelle edited this page Apr 19, 2012 · 2 revisions

Vuzit.ClientException class

Error handling class for Vuzit.Net.

Constructors

All of the constructors for the class.

  • Vuzit.Client Exception : Base constructor.

Instance Properties

The instance properties.

  • string Message : Error message.
  • int Code : Error code.

Usage Example


try
{
  Vuzit.Document doc = Vuzit.Document.Upload(@"c:\path\to\document.pdf");  
}
catch(Vuzit.ClientException ex)
{
  Console.WriteLine("Error uploading the document [{0}]: {1}", ex.Code, ex.Message);
}