com.github.ygimenez.exception.AlreadyActivatedException Maven / Gradle / Ivy
package com.github.ygimenez.exception;
/**
* Exception thrown when the library has already been activated.
*/
public class AlreadyActivatedException extends RuntimeException {
/**
* Default constructor.
*/
public AlreadyActivatedException() {
super("You already configured one event handler");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy