We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df40156 commit 0cc8a78Copy full SHA for 0cc8a78
platform-yml-parser/src/main/java/com/flow/platform/yml/parser/exception/YmlException.java
@@ -22,10 +22,10 @@
22
public class YmlException extends RuntimeException {
23
24
public YmlException(String message) {
25
- super(String.format("Illegal yml format: %s", message));
+ super("Illegal yml format: " + message);
26
}
27
28
public YmlException(String message, Throwable cause) {
29
- super(String.format("Illegal yml format: %s", message), cause);
+ super("Illegal yml format: " + message, cause);
30
31
0 commit comments