Skip to content

Commit

Permalink
format comma
Browse files Browse the repository at this point in the history
  • Loading branch information
zhou9584 committed Aug 7, 2023
1 parent 6cbc184 commit ff4fa57
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions agent/doc/UML/hydra_lab_exception_monitor_design.puml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
@startuml exception_monitor
interface ExceptionReporter {
+ void reportException(Exception e ,boolean fatal)
+ void reportException(Exception e ,Thread thread ,boolean fatal)
+ void reportException(Exception e, boolean fatal)
+ void reportException(Exception e, Thread thread, boolean fatal)
}

class ExceptionReporterManager {
List<ExceptionReporter> reporters
+ void registerExceptionReporter(ExceptionReporter reporter)
+ void reportException(Exception e ,boolean fatal)
+ void reportException(Exception e ,Thread thread ,boolean fatal)
+ void reportException(Exception e, boolean fatal)
+ void reportException(Exception e, Thread thread, boolean fatal)
}

class AppCenterReporter implements ExceptionReporter {
AppCenterClient appCenterClient;

+ void reportException(Exception e ,boolean fatal)
+ void reportException(Exception e ,Thread thread ,boolean fatal)
+ void reportException(Exception e, boolean fatal)
+ void reportException(Exception e, Thread thread, boolean fatal)
}


class FileReporter implements ExceptionReporter {
+ void reportException(Exception e ,boolean fatal)
+ void reportException(Exception e ,Thread thread ,boolean fatal)
+ void reportException(Exception e, boolean fatal)
+ void reportException(Exception e, Thread thread, boolean fatal)
+ void writeToFile(String message, StackTraceElement[] stackTrace)
}

Expand Down
Binary file modified docs/images/UML/exception_monitor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ff4fa57

Please sign in to comment.