class AmtException implements Exception {
String errMsg() => 'Amount should not be less than zero';
}
void main() {
try {
var amt = -1;
if (amt < 0) {
throw AmtException();
}
} catch (e) {
print(e.errMsg());
}
}
我正在尝试创建自定义异常并抛出自定义异常类的对象。但是当我尝试调用自定义类异常的方法时。
错误
dart/exceptions.dart:81:11:错误:没有为类“Object”定义方法“errMsg”。
当您使用
catch (e)
时,这意味着您正在捕获任何错误,因此 e
的类型为 Object
。
如果您想捕获特定错误,请使用
on NameOfTheException catch (e)
语法:
try {
throw AmtException();
} on AmtException catch (e) {
// Now `e` is an `AmtException`
print(e.errMsg());
}