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

📄 typemismatchedexception.java

📁 基于算符优先关心的
💻 JAVA
字号:
/**
 * @Copyright(C) 2008 Software Engineering Laboratory (SELAB), Department of Computer 
 * Science, SUN YAT-SEN UNIVERSITY. All rights reserved.
**/

package exceptions;

/**
 * A type error is found in semantic analysis. 
 *
 * @author Dr. Wen-jun LI
 * @author Da LUO
 * @version 1.00 (Last update: March 1, 2008)
**/
public class TypeMismatchedException extends SemanticException
{
	public TypeMismatchedException() {
		this("Type mismatched.");
	}
	public TypeMismatchedException(String msg) {
		super(msg);
	}
}

⌨️ 快捷键说明

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