static Frame _catchFormatException()

in lib/src/frame.dart [331:337]


  static Frame _catchFormatException(String text, Frame Function() body) {
    try {
      return body();
    } on FormatException catch (_) {
      return UnparsedFrame(text);
    }
  }