All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.chenhuanming.octopus.exception.NotAllowValueException Maven / Gradle / Ivy

The newest version!
package cn.chenhuanming.octopus.exception;

import lombok.Getter;

import java.util.Collections;
import java.util.List;

/**
 * @author chenhuanming
 * Created at 2019-01-09
 */
public class NotAllowValueException extends ParseException {
    @Getter
    private final List options;

    public NotAllowValueException(List options) {
        this.options = Collections.unmodifiableList(options);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy