⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ierror.java

📁 esri的ArcGIS Server超级学习模板程序(for java)
💻 JAVA
字号:
package com.esri.solutions.jitk.web.error;

import java.util.UUID;

/**
 * Represents an error produced by a component of the system.  The
 * component could be any control within the application such as a task,
 * map, TOC, etc.  The error is intended to be a GUI-type error and should
 * be a human readable and understandable message.  The message will eventually
 * be presented to the user.
 */
public interface IError {

	/**
	 * Retrieves a unique identifier for this error.
	 *   
	 * @return Unique Identifier
	 */
	public UUID getId();
	
	/**
	 * Retrieves a code for this error.  This code can be used to
	 * represent an error type or category or both.
	 * 
	 * @return Error Code
	 */
	public String getCode();
	
	/**
	 * Retrieves a human-readable error message.
	 * 
	 * @return Error message.
	 */
	public String getMessage ();
}

⌨️ 快捷键说明

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