Constructors Summary |
---|
public ImException(String message)Creates a new ImException with the specified detail message.
super(message);
|
public ImException(ImErrorInfo error)Creates a new ImException with the IMError which was the cause of the
exception.
super(error.getDescription());
mError = error;
|
public ImException(Throwable cause)Creates a new ImException with the specified cause.
super(cause);
|
public ImException(String message, Throwable cause)Creates a new ImException with the specified detail message and cause.
super(message, cause);
|
public ImException(int imErrorCode, String description)Creates a new ImException with specified IM error code and description
this(new ImErrorInfo(imErrorCode, description));
|