TelnetException.java
资源名称:telnet.rar [点击查看]
上传用户:sxqicai
上传日期:2021-04-19
资源大小:4k
文件大小:0k
源码类别:
Telnet服务器
开发平台:
Java
- package telnet;
- public class TelnetException extends Exception
- {
- /**
- *
- */
- public int error_code; //错误编码
- public String error_msg ; //错误信息
- public TelnetException(int error_code,String error_msg)
- {
- super(error_msg);
- this.error_code=error_code;
- this.error_msg=error_msg;
- }
- }