public static Event createWithException()

in src/main/java/com/microsoft/appcenter/appium/Event.java [48:52]


    public static Event createWithException(String id, EventType type, String testName, String className, int run, String exception) {
        Event event = new Event(id, type, testName, className, run);
        event.exception = exception;
        return event;
    }