Created the ResponderException

This commit is contained in:
mathias 2021-10-01 18:11:07 +02:00
parent 74265cc3a4
commit 2c5ee96c12
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

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);
}
}