Skip to content

Commit ff194eb

Browse files
committed
stub methods in EarlyFailingFailureReporter
1 parent cb0b4e8 commit ff194eb

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed
Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
11
package org.everit.json.schema;
22

3-
public class EarlyFailingFailureReporter {
3+
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+
}
424
}

0 commit comments

Comments
 (0)