java/core/src/main/java/org/bondlib/Throw.java [160:169]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    static void raiseRequiredStructFieldIsMissingDeserializationError(
            StructBondType.StructField<?> field) throws InvalidBondDataException {
        raiseInvalidDataError(
                null,
                "Unable to deserialize '%s' since the payload is missing required field '%s' (id: %d) of type '%s'.",
                field.getStructType().getFullName(),
                field.getName(),
                field.getId(),
                field.getFieldType().getFullName());
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



java/core/src/main/java/org/bondlib/Throw.java [172:181]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    static void raiseStructFieldIsPresentMoreThanOnceDeserializationError(
            StructBondType.StructField<?> field) throws InvalidBondDataException {
        raiseInvalidDataError(
                null,
                "Unable to deserialize '%s' since the payload contains multiple fields '%s' (id: %d) of type '%s'.",
                field.getStructType().getFullName(),
                field.getName(),
                field.getId(),
                field.getFieldType().getFullName());
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



