我怎么知道捕获到的异常的行号 内部尝试,抓住? 这是我的代码:
try{
//your code here
} catch (Exception) {
print('Exception '+Exception.toString());
}
答案 0 :(得分:1)
try{
//your code here
} catch (e, stacktrace) {
print('Exception: ' + e.toString());
print('Stacktrace: ' + stacktrace.toString());
}