浏览代码

Changed error message to match legacy.

woollybah 9 年之前
父节点
当前提交
af1f610f5f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      decl.bmx

+ 2 - 2
decl.bmx

@@ -1290,9 +1290,9 @@ End Rem
 				End If
 			Else
 				If throwOnNotMatched Then
-					Throw "Function "+ident+"("+t+") not found."
+					Throw "Identifier '" + ident + "' not found."
 				Else
-					Err "Function "+ident+"("+t+") not found."
+					Err "Identifier '" + ident + "' not found."
 				End If
 			End If
 		EndIf