最佳答案
我编写这段代码是为了测试 Dart 中自定义异常是如何工作的。
我没有得到想要的输出,有人能给我解释一下怎么处理吗?
void main()
{
try
{
throwException();
}
on customException
{
print("custom exception is been obtained");
}
}
throwException()
{
throw new customException('This is my first custom exception');
}