com.electricvine
Class LastError

java.lang.Object
  |
  +--com.electricvine.LastError

public class LastError
extends java.lang.Object

This is a static object that holds information about last error that occurred. It needs to be used when a method of App or ZipSearch object returns false to get detailed information about the error.
LastError object has two properties -- Code and Description


Method Summary
static void Clear()
           
static int getCode()
          This returns the error code of last error that occurred.
static java.lang.String getDescription()
          Returns description of the last error that occurred.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getCode

public static int getCode()
This returns the error code of last error that occurred.

getDescription

public static java.lang.String getDescription()
Returns description of the last error that occurred.


Clear

public static void Clear()