priam/src/main/java/com/netflix/priam/restore/RestoreContext.java [120:135]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                if (acceptIllegalValue) {
                    message =
                            message
                                    + ". Since acceptIllegalValue is set to True, returning NULL instead.";
                    logger.error(message);
                    return null;
                }

                logger.error(message);
                throw new UnsupportedTypeException(message, ex);
            }
        }

        private static String getSupportedValues() {
            StringBuilder supportedValues = new StringBuilder();
            boolean first = true;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



priam/src/main/java/com/netflix/priam/tuner/GCType.java [76:91]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if (acceptIllegalValue) {
                message =
                        message
                                + ". Since acceptIllegalValue is set to True, returning NULL instead.";
                logger.error(message);
                return null;
            }

            logger.error(message);
            throw new UnsupportedTypeException(message, ex);
        }
    }

    private static String getSupportedValues() {
        StringBuilder supportedValues = new StringBuilder();
        boolean first = true;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



