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

io.muserver.rest.NotImplementedException Maven / Gradle / Ivy

The newest version!
package io.muserver.rest;

/**
 * Thrown when a feature in MuServer that is not implemented is invoked
 */
class NotImplementedException extends RuntimeException {

    NotImplementedException(String message) {
        super(message);
    }

    static NotImplementedException notYet() {
        return new NotImplementedException("This is not yet implemented by MuServer, but will be in the future.");
    }
    static NotImplementedException willNot() {
        return new NotImplementedException("This will never be supported by MuServer");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy