J'ai écrit ce code pour tester le fonctionnement des exceptions personnalisées en Dart.
Je n'obtiens pas la sortie désirée, quelqu'un pourrait-il m'expliquer comment le gérer??
void main()
{
try
{
throwException();
}
on customException
{
print("une exception personnalisée a été obtenue");
}
}
throwException()
{
throw new customException('Ceci est ma première exception personnalisée');
}