
io.muserver.rest.NotImplementedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mu-server Show documentation
Show all versions of mu-server Show documentation
A simple but powerful web server framework
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