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

in.ashwanthkumar.utils.lang.option.None Maven / Gradle / Ivy

There is a newer version: 0.1.0
Show newest version
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");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy