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

📄 errorcodes.java

📁 JAVA 数学程序库 提供常规的数值计算程序包
💻 JAVA
字号:
package jmathlib.core.constants;

public interface ErrorCodes
{
    public static final int OK = 0;
    public static final int OK_FUNCTION_PROCESS = 1;

    //syntax errors
    public static final int ERR_OPNOTSUPPORTED           = 1000;

    public static final int ERR_BRACKET_ORDER = 2000;
    public static final int ERR_BRACKET_OPEN  = 2001;

    //variable errors
    public static final int ERR_VARIABLE_NOTDEFINED = 3000;
    public static final int ERR_LVALUE_REQUIRED     = 3100;
    
	//General function errors
	public static final int ERR_INVALID_PARAMETER = 10000;
	public static final int ERR_INSUFFICIENT_PARAMETERS=10001;	    
	public static final int ERR_TOO_MANY_PARAMETERS=10002;	    
	
	public static final int ERR_FUNCTION_NOT_FOUND       = 10100;
   public static final int ERR_FUNCTION_NOT_IMPLEMENTED = 10101;

    //matrix errors
    public static final int ERR_NOT_SQUARE_MATRIX = 12000;
    public static final int ERR_MATRIX_SINGULAR   = 12001;

	//misc errors
	public static final int ERR_USER_ERROR = 20000;
} 

⌨️ 快捷键说明

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