addError

Adds a child error to this mutable

Return

this mutable

Author

fzzyhmstrs

Since

0.7.0

Parameters

result

ValidationResult; its error entry will be added as a child. If the error is empty it will be ignored.


Adds a child error to this mutable

Return

this mutable

Author

fzzyhmstrs

Since

0.7.0

Parameters

other

ErrorEntry child entry to add


Adds the entries from another mutable to this one

Return

this mutable

Author

fzzyhmstrs

Since

0.7.0

Parameters

other

Mutable the other mutable instance to copy in


Builds and adds a child entry to this mutable of the given type

Return

this

Author

fzzyhmstrs

Since

0.7.0

Parameters

C

Non-null error type

type

Type<C> error type to build

builder

UnaryOperator<Builder> operator for applying features to a pre-created builder instance


Builds and adds a string-based child entry to this mutable

Author

fzzyhmstrs

Since

0.7.0

Parameters

builder

UnaryOperator<Builder> operator for applying features to a pre-created builder instance. Will use the ValidationResult.Errors.BASIC type return this mutable


Builds and adds a string-based child entry to this mutable

Return

this mutable

Author

fzzyhmstrs

Since

0.7.0

Parameters

type

Type a string-based error type

error

The error message

e

Throwable, nullable exception if the error was caused by a throw