提交 ab8e006b 编写于 作者: J Jason Holmes

Merge pull request #72 from square/jw/unused

Remove unused ServerException.
// Copyright 2010 Square, Inc.
package retrofit.http;
/**
* Thrown if the server behaves unexpectedly. Typically, this indicates an
* intermittent problem; the request can be retried again later.
*
* @author Bob Lee (bob@squareup.com)
*/
public class ServerException extends Exception {
public ServerException(String detailMessage) {
super(detailMessage);
}
public ServerException(Throwable throwable) {
super(throwable);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册