com.mageddo.togglefirst.ToggleFirstException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toggle-first-core Show documentation
Show all versions of toggle-first-core Show documentation
Enable and disable your features in production on a button click
package com.mageddo.togglefirst;
public class ToggleFirstException extends RuntimeException {
public ToggleFirstException(String message) {
super(message);
}
public ToggleFirstException(String message, Throwable cause) {
super(message, cause);
}
public ToggleFirstException(Throwable cause) {
super(cause);
}
}