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 cb0b4e8 commit ff194ebCopy full SHA for ff194eb
core/src/main/java/org/everit/json/schema/EarlyFailingFailureReporter.java
@@ -1,4 +1,24 @@
1
package org.everit.json.schema;
2
3
-public class EarlyFailingFailureReporter {
+public class EarlyFailingFailureReporter implements ValidationFailureReporter {
4
+
5
+ @Override public void failure(String message, String keyword) {
6
7
+ }
8
9
+ @Override public void failure(Class<?> expectedType, Object actualValue) {
10
11
12
13
+ @Override public void failure(ValidationException exc) {
14
15
16
17
+ @Override public ValidationException inContextOfSchema(Schema schema, Runnable task) {
18
+ return null;
19
20
21
+ @Override public void validationFinished() {
22
23
24
}
0 commit comments