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

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

There is a newer version: 2.0.3
Show newest version
package io.muserver.rest;

class NotImplementedException extends RuntimeException {

    public NotImplementedException() {
        super();
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy