public class CollectErrorsHandler extends ErrorHandler
ErrorHandler
and never throws
any exception, but collects them so callers can retrieve all of them in one
go.Constructor and Description |
---|
CollectErrorsHandler() |
Modifier and Type | Method and Description |
---|---|
void |
assembleException()
Deprecated.
|
void |
error(ValidationException exception)
Receive notification of an error.
|
List<ValidationException> |
getExceptions()
Returns the collected
ValidationException s. |
boolean |
hasError()
Get the final result of the validation.
|
public void error(ValidationException exception) throws SchemaException
For example, a validator would use this callback to report the violation of a validity constraint. The default behaviour is to take no action.
The validator must continue to provide normal validation after invoking this method: it should still be possible for the application to process the document through to the end. If the application cannot do so, then the parser should report a fatal error.
Filters may use this method to report other, non-JSON errors as well.
error
in class ErrorHandler
exception
- The error information encapsulated in a
validation exception.SchemaException
- Any JSON exception, possibly
wrapping another exception.@Deprecated public void assembleException() throws ValidationException
assembleException
in class ErrorHandler
ValidationException
- when this instance wraps an error message(s).public List<ValidationException> getExceptions()
ValidationException
s.ValidationException
spublic boolean hasError()
false
. If the validator has called the {#handleError} method
then it return true
.hasError
in class ErrorHandler
Copyright © 2025 Open Identity Platform Community. All rights reserved.