Constructors Summary |
---|
public GDataException()Creates a new empty GDataException.
super();
cause = null;
|
public GDataException(String message)Creates a new GDataException with the supplied message.
super(message);
cause = null;
|
public GDataException(String message, Throwable cause)Creates a new GDataException with the supplied message and underlying
cause.
super(message);
this.cause = cause;
|
public GDataException(Throwable cause)Creates a new GDataException with the underlying cause.
this("", cause);
|