GWT 2.7.0

com.google.gwt.geolocation.client
Class PositionError

java.lang.Object
  extended by java.lang.Throwable
      extended by com.google.gwt.geolocation.client.PositionError
All Implemented Interfaces:
java.io.Serializable

public final class PositionError
extends java.lang.Throwable

Represents an error that occurred while trying to get the user's current position.

See Also:
Serialized Form

Field Summary
static int PERMISSION_DENIED
          The user declined access to their position to this application.
static int POSITION_UNAVAILABLE
          The browser was unable to locate the user.
static int TIMEOUT
          The browser was unable to locate the user in enough time.
static int UNKNOWN_ERROR
          An unknown error occurred.
 
Constructor Summary
PositionError(int code, java.lang.String message)
           
 
Method Summary
 int getCode()
          Returns the error code associated with this error.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

UNKNOWN_ERROR

public static final int UNKNOWN_ERROR
An unknown error occurred.

See Also:
Constant Field Values

PERMISSION_DENIED

public static final int PERMISSION_DENIED
The user declined access to their position to this application.

See Also:
Constant Field Values

POSITION_UNAVAILABLE

public static final int POSITION_UNAVAILABLE
The browser was unable to locate the user.

See Also:
Constant Field Values

TIMEOUT

public static final int TIMEOUT
The browser was unable to locate the user in enough time.

See Also:
Constant Field Values
Constructor Detail

PositionError

PositionError(int code,
              java.lang.String message)
Method Detail

getCode

public int getCode()
Returns the error code associated with this error.


GWT 2.7.0