Constructors Summary |
---|
public GDataRequestException(int errorCode)/**
Constructs a new GDataRequestException
super();
this.errorCode = errorCode;
|
public GDataRequestException(String arg0, int errorCode)Constructs a new GDataRequestException
super(arg0);
this.errorCode = errorCode;
|
public GDataRequestException(String arg0, Throwable arg1, int errorCode)Constructs a new GDataRequestException
super(arg0, arg1);
this.errorCode = errorCode;
|
public GDataRequestException(Throwable arg0, int errorCode)Constructs a new GDataRequestException
super(arg0);
this.errorCode = errorCode;
|