TelnetException.java
上传用户:sxqicai
上传日期:2021-04-19
资源大小:4k
文件大小:0k
源码类别:

Telnet服务器

开发平台:

Java

  1. package telnet;
  2. public class TelnetException extends Exception
  3. {
  4. /**
  5.  * 
  6.  */
  7. public int error_code; //错误编码 
  8. public String error_msg ; //错误信息
  9. public TelnetException(int error_code,String error_msg)
  10. {
  11. super(error_msg);
  12. this.error_code=error_code;
  13. this.error_msg=error_msg;
  14. }
  15. }