in.ashwanthkumar.utils.lang.option.None Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of my-java-utils Show documentation
Show all versions of my-java-utils Show documentation
My personal set of utils that I take along with my java projects.
package in.ashwanthkumar.utils.lang.option;
public class None extends Option {
public None() {
super(null);
}
@Override
public T get() throws IllegalStateException {
throw new IllegalStateException("get on None");
}
}