remoteserverexception.java

来自「《j2ee开发全程实录》随书源码」· Java 代码 · 共 26 行

JAVA
26
字号
package com.cownew.PIS.framework.client;


import com.cownew.PIS.framework.common.exception.PISException;
import com.cownew.PIS.framework.common.exception.PISExceptionItemInfo;

public class RemoteServerException extends PISException
{
	public final static PISExceptionItemInfo CONNECTSERVERERROR = new PISExceptionItemInfo(
			"Cannot connect server");
	
	public final static PISExceptionItemInfo SESSIONIDISNULL = new PISExceptionItemInfo(
	"当前会话Id为空!");

	public RemoteServerException(PISExceptionItemInfo item, Throwable t)
	{
		super(item, t);
	}

	public RemoteServerException(PISExceptionItemInfo item)
	{
		super(item);
	}

}

⌨️ 快捷键说明

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