cn.chenhuanming.octopus.exception.NotAllowValueException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of octopus Show documentation
Show all versions of octopus Show documentation
A simple excel import and export tool
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);
}
}