This commit is contained in:
norris%netscape.com 2000-04-19 23:24:04 +00:00
Родитель d11fdcdd70
Коммит 62efd62f19
2 изменённых файлов: 10 добавлений и 2 удалений

Просмотреть файл

@ -65,7 +65,11 @@ public class EcmaError extends RuntimeException {
* of the name of the error together with the message.
*/
public String toString() {
return errorObject.toString();
if (sourceName != null && lineNumber > 0)
return errorObject.toString() + " (" + sourceName +
"; line " + lineNumber + ")";
else
return errorObject.toString();
}
/**

Просмотреть файл

@ -65,7 +65,11 @@ public class EcmaError extends RuntimeException {
* of the name of the error together with the message.
*/
public String toString() {
return errorObject.toString();
if (sourceName != null && lineNumber > 0)
return errorObject.toString() + " (" + sourceName +
"; line " + lineNumber + ")";
else
return errorObject.toString();
}
/**