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

com.xyzwps.lib.dollar.Unreachable Maven / Gradle / Ivy

The newest version!
package com.xyzwps.lib.dollar;

/**
 * Throw when executing an unreachable branch.
 */
public class Unreachable extends RuntimeException {

    /**
     * Default constructor is ok.
     */
    public Unreachable() {
        super("The branch is unreachable. Maybe a BUG.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy