tryParse static method

JvmException? tryParse(
  1. String exception
)

Implementation

static JvmException? tryParse(String exception) {
  try {
    return JvmException.parse(exception);
  } catch (_) {
    return null;
  }
}