Dart编程实例 - 抛出异常 Dart编程实例 - 异常处理Finally 块 Dart编程实例 - 自定义异常 Dart编程实例 - 抛出异常 main() { try { test_age(-2); } catch(e) { print('Age cannot be negative'); } } void test_age(int age) { if(age<0) { throw new FormatException(); } } Dart编程实例 - 异常处理Finally 块 Dart编程实例 - 自定义异常