All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hextremelabs.ussd.exception.InvocationException Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy