net.anotheria.portalkit.services.subscription.SubscriptionServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pk-services-subscriptionservice Show documentation
Show all versions of pk-services-subscriptionservice Show documentation
Subscription service manages subscriptions of the user
package net.anotheria.portalkit.services.subscription;
/**
* TODO comment this class
*
* @author lrosenberg
* @since 12.03.16 17:26
*/
public class SubscriptionServiceException extends Exception {
public SubscriptionServiceException(String message){
super (message);
}
public SubscriptionServiceException(String message, Throwable cause){
super (message, cause);
}
}