@@ -60,15 +60,15 @@ classDiagram
60
60
+exception(Throwable) RuntimeException
61
61
+exception(Runnable) RuntimeException
62
62
+exception(Runnable, Throwable) RuntimeException
63
- +exception(Supplier<Map<String,Object >>) RuntimeException
64
- +exception(Supplier<Map<String,Object >>, Throwable) RuntimeException
63
+ +exception(Supplier<Map<... >>) RuntimeException
64
+ +exception(Supplier<Map<... >>, Throwable) RuntimeException
65
65
}
66
66
67
67
class BaseCustomException {
68
68
<<exception>>
69
69
#errorCode: BaseErrorCode
70
70
#action: Runnable
71
- #payloadSupplier: Supplier<Map<String,Object >>
71
+ #payloadSupplier: Supplier<Map<... >>
72
72
$DefaultBaseErrorCodeHolder.INSTANCE : BaseErrorCode
73
73
74
74
%% +BaseCustomException()
@@ -83,7 +83,7 @@ classDiagram
83
83
84
84
+getErrorCode() BaseErrorCode
85
85
+executeOnError() void
86
- +getPayload() Map<String, Object >
86
+ +getPayload() Map<... >
87
87
+getPayloadOrElse(Map<...>) Map<String, Object>
88
88
+getPayloadOrElseGet(() -> Map<...>) Map<String, Object>
89
89
}
0 commit comments