Added support for OpenClientAPI

This commit is contained in:
Sven Kubiak
2021-06-20 11:42:07 +02:00
parent 1b57fc6538
commit c0fa4f3046
8 changed files with 395 additions and 37 deletions

View File

@@ -0,0 +1,14 @@
package de.svenkubiak.jpushover.exceptions;
/**
*
* @author svenkubiak
*
*/
public class JPushoverException extends Exception{
private static final long serialVersionUID = -5719174030861964503L;
public JPushoverException(String message, Exception e) {
super(message, e);
}
}