“DART Try-Catch” Código de respuesta

DART Try-Catch

try {
  // ...
} on SomeException catch(e) {
 //Handle exception of type SomeException
} catch(e) {
 //Handle all other exceptions
}
Modern Manx

Dart intente atrapar

try {
  breedMoreLlamas();
} on OutOfLlamasException {			// A specific exception  
  buyMoreLlamas();
} on Exception catch (e) { 			// Anything else that is an exception
  print('Unknown exception: $e');
} catch (e) {						// No specified type, handles all
  print('Something really unknown: $e');
} finally {							// Always clean up, even if case of exception
  cleanLlamaStalls();
}
VasteMonde

Respuestas similares a “DART Try-Catch”

Preguntas similares a “DART Try-Catch”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código