Created the ResponderException

This commit is contained in:
2021-10-01 18:11:07 +02:00
parent 74265cc3a4
commit 2c5ee96c12

View File

@ -0,0 +1,14 @@
package de.gnmyt.autoresponder.exceptions;
public class ResponderException extends Exception {
/**
* The constructor of the {@link ResponderException}
*
* @param message The message that the {@link ResponderException} should drop
*/
public ResponderException(String message) {
super(message);
}
}