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

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

The newest version!
package com.hextremelabs.ussd.exception;

/**
 * Indicates that there was an error in screen navigation (if the next screen could not be found).
 *
 * @author Sayo Oladeji
 */
public class UINavigationException extends Exception {

  private static final long serialVersionUID = 1L;

  /**
   * Creates a new instance of UINavigationException without detail message.
   */
  public UINavigationException() {
  }

  /**
   * Constructs an instance of UINavigationException with the specified detail message.
   *
   * @param msg the detail message.
   */
  public UINavigationException(String msg) {
    super(msg);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy