httpserviceunavailableexception.java

来自「国外的j2me播放器软件」· Java 代码 · 共 29 行

JAVA
29
字号
/*
 * Created on 26.mai.2006
 *
 * To change the template for this generated file go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
package no.auc.one.portableplayer.communication;

import java.io.IOException;

public class HttpServiceUnavailableException extends IOException {
    
    int retryAfter = -1;

    public HttpServiceUnavailableException() {
        super();
    }

    public HttpServiceUnavailableException(String arg0) {
        super(arg0);
    }
    
    public HttpServiceUnavailableException(String arg0, int retryAfter) {
        super(arg0);
        
        this.retryAfter = retryAfter;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?