com.hextremelabs.ussd.exception.InvocationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lib-ussd Show documentation
Show all versions of lib-ussd Show documentation
A lightweight USSD application framework
The newest version!
package com.hextremelabs.ussd.exception;
/**
* Indicates that an error occurred while invoking a screen's callback.
*
* @author Sayo Oladeji
*/
public class InvocationException extends Exception {
private static final long serialVersionUID = 1L;
public InvocationException(String operation, Exception cause) {
super(operation, cause);
}
}